ソースコード
select
    od.item_code CODE
    ,i.item_name NAME
    ,sum(od.unitprice * order_qty) TOTAL_AMT
from
    orders_dtl od
    left join orders o on od.order_no = o.order_no
    left join item i on i.item_code = od.item_code
where
    o.order_date between '2023-05-14' and '2023-05-20'
group by
    od.item_code, i.item_name
order by
    total_amt desc, od.item_code desc
limit 5
;
提出情報
提出日時2024/09/28 18:18:30
コンテスト第7回 SQLコンテスト
問題受注金額TOP5
受験者nosh
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
84 MB
データパターン2
AC
84 MB
データパターン3
AC
85 MB