ソースコード
with tmp as(
select
    od.item_code as CODE
    ,it.item_name as NAME
    ,sum(od.unitprice * od.order_qty) as TOTAL_AMT
from
    orders_dtl as od
inner join orders as odr
on od.order_no = odr.order_no
inner join item as it
on od.item_code = it.item_code
where
    odr.order_date between date('2023-05-14') and date('2023-05-20')
group by
    CODE,NAME
order by
    total_amt desc
    ,code desc
)
select * from tmp limit 5
提出情報
提出日時2023/08/02 16:16:40
コンテスト第7回 SQLコンテスト
問題受注金額TOP5
受験者mywk
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
80 MB
データパターン2
AC
84 MB
データパターン3
AC
78 MB