ソースコード
select 
    it.ITEM_CODE as CODE,
    it.ITEM_NAME as NAME,
    sum(odd.UNITPRICE * odd.ORDER_QTY) as TOTAL_AMT
from ORDERS_DTL as odd
    left outer join ITEM as it 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-5-20'
group by 
    CODE
order by 
    TOTAL_AMT desc,
    CODE desc
limit  
    5;
    
提出情報
提出日時2024/07/16 09:54:45
コンテスト第7回 SQLコンテスト
問題受注金額TOP5
受験者asano
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
85 MB
データパターン2
WA
84 MB
データパターン3
WA
84 MB