ソースコード
select
    aa.item_code as CODE,
    bb.item_name as NAME,
    aa.TOTAL_AMT

from(
    select
        b.item_code,
        sum(b.unitprice * b.order_qty) as TOTAL_AMT
    from orders as a
    inner join orders_dtl as b
    on
        a.order_no = b.order_no
        and julianday(a.order_date) between julianday('2023-05-14') and julianday('2023-05-20')
    group by 1) as aa
inner join item as bb
using(item_code)
order by 3 desc, 1 desc;
提出情報
提出日時2023/06/17 13:49:38
コンテスト第7回 SQLコンテスト
問題受注金額TOP5
受験者miotsukushi0800
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量80 MB
メッセージ
テストケース(通過数/総数)
1/3
状態
メモリ使用量
データパターン1
WA
79 MB
データパターン2
AC
80 MB
データパターン3
WA
80 MB