ソースコード
select
    i.ITEM_CODE as CODE,
    i.ITEM_NAME as NAME,
    ord.q as TOTAL_AMT
from
    item as i
inner join(
    select
        od.item_code,
        sum(od.unitprice * od.order_qty) as q
    from orders as o
    inner join
        orders_dtl as od
    on
        o.order_no = od.order_no
    group by
        od.item_code
    order by
        od.item_code desc
        ) as ord
on
    i.item_code = ord.item_code
group by
    i.item_code,
    i.item_name
order by
    total_amt desc,
    ord.item_code desc
limit 5;
提出情報
提出日時2023/06/18 12:09:08
コンテスト第7回 SQLコンテスト
問題受注金額TOP5
受験者UT
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量91 MB
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
76 MB
データパターン2
WA
91 MB
データパターン3
WA
78 MB