ソースコード
        select
            aa.item_code as CODE,
            bb.item_name as NAME,
            aa.TOTAL_AMT
        from(
            select
                c.item_code,
                sum(total) as TOTAL_AMT
            from(
                select
                    b.item_code,
                    b.unitprice * b.order_qty as total
                from (select distinct order_no 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)) as c
                group by 1) as aa
        inner join item as bb
        using(item_code)
        order by 3 desc, 1 desc;
提出情報
提出日時2023/06/17 14:00:18
コンテスト第7回 SQLコンテスト
問題受注金額TOP5
受験者miotsukushi0800
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量82 MB
メッセージ
テストケース(通過数/総数)
1/3
状態
メモリ使用量
データパターン1
WA
77 MB
データパターン2
AC
82 MB
データパターン3
WA
80 MB