ソースコード
select od.item_code as CODE,item_name as NAME,sum(unitprice*order_qty) as TOTAL_AMT
from orders o
left outer join orders_dtl od
on od.order_no = o.order_no
left outer join item i
on i.item_code = od.item_code
where order_date between '2023-05-14' and '2023-05-20'
group by CODE
order by TOTAL_AMT desc,CODE desc
limit 5;

提出情報
提出日時2023/07/25 15:01:39
コンテスト第7回 SQLコンテスト
問題受注金額TOP5
受験者InakaMon
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量94 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
94 MB
データパターン2
AC
76 MB
データパターン3
AC
87 MB