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