ソースコード
select
    i.ITEM_CODE as CODE,
    i.ITEM_NAME as NAME,
    sum(od.UNITPRICE * od.ORDER_QTY) as TOTAL_AMT
from ORDERS o
inner JOIN ORDERS_DTL od on o.ORDER_NO = od.ORDER_NO and o.ORDER_DATE between '2023-05-14' and '2023-05-20'
LEFT JOIN ITEM i on od.ITEM_CODE = i.ITEM_CODE
group by CODE
order by TOTAL_AMT desc, CODE desc
limit 5
;
提出情報
提出日時2023/06/17 00:36:38
コンテスト第7回 SQLコンテスト
問題受注金額TOP5
受験者kinocooper
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量80 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
78 MB
データパターン2
AC
78 MB
データパターン3
AC
80 MB