ソースコード
with st as (select
*
from orders
where wh_code = (select wh_code from warehouse where wh_name = '浦和倉庫')
)
select 
sum(dt.order_qty) as SUM_QTY
, dt.item_code as CODE
, item.item_name as NAME
from st join orders_dtl dt on st.order_no = dt.order_no
left join item on dt.ITEM_CODE = item.item_code
group by dt.item_code
having SUM_QTY >= 50
order by SUM_QTY desc, CODE desc
提出情報
提出日時2024/06/23 16:23:08
コンテスト第1回 SQLコンテスト初級編
問題売れ筋商品
受験者daku10
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
84 MB
データパターン2
AC
85 MB