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