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