ソースコード
select 
    it.ITEM_CODE as CODE,
    it.ITEM_NAME as NAME,
    sum(odd.UNITPRICE * odd.ORDER_QTY) as TOTAL_AMT
from ITEM as it
    left outer join ORDERS_DTL as odd on it.ITEM_CODE = odd.ITEM_CODE
    left outer join ORDERS as od on odd.ORDER_NO = od.ORDER_NO
where 
    od.ORDER_DATE between '2023-05-14' and '2023-05-20'
group by 
    CODE
order by 
    TOTAL_AMT desc,
    CODE desc
limit  
    5;
    
提出情報
提出日時2024/07/16 10:27:38
コンテスト第7回 SQLコンテスト
問題受注金額TOP5
受験者asano
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
84 MB
データパターン2
AC
85 MB
データパターン3
AC
85 MB