ソースコード
select
    TBL1.ITEM_CODE as CODE,
    ITEM_NAME as NAME,
    (UNITPRICE * ORDER_QTY) as TOTAL_AMT
from
    ORDERS_DTL as TBL1
left outer join
    ORDERS as TBL2 on TBL1.ORDER_NO = TBL2.ORDER_NO
left outer join
    ITEM as TBL3 on TBL3.ITEM_CODE = TBL3.ITEM_CODE
where
    TBL2.ORDER_DATE >= '2023-05-14'
    and '2023-05-20' >= TBL2.ORDER_DATE
order by
    3 desc,TBL1.ITEM_CODE asc
limit 5
提出情報
提出日時2023/06/16 16:53:06
コンテスト第7回 SQLコンテスト
問題受注金額TOP5
受験者M_ENDO
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量91 MB
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
86 MB
データパターン2
WA
89 MB
データパターン3
WA
91 MB