ソースコード
select
    item.item_code as CODE
    ,item.item_name as NAME
    ,sum(dtl.UNITPRICE * dtl.ORDER_QTY) as TOTAL_AMT
from
    orders_dtl as dtl
    inner join ITEM
        on dtl.item_code = item.item_code
    inner join orders as o
        on o.order_no = dtl.order_no
        and o.order_date between '2023-05-14' and '2023-05-20'
group by
    item.item_code
order by
    TOTAL_AMT DESC
    ,item.ITEM_CODE desc
limit 5
;
提出情報
提出日時2024/12/02 02:58:02
コンテスト第7回 SQLコンテスト
問題受注金額TOP5
受験者takey
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
85 MB
データパターン2
AC
85 MB
データパターン3
AC
85 MB