ソースコード
select
    od.cust_code as CODE
    ,c.cust_name as NAME
    ,count(od.order_date) as CNT
from
    (
        select
            distinct order_date, cust_code
        from
            orders
        where
            order_date >= '2023-07-01'
            and order_date <= '2023-07-31'
    ) as od
join
    customer c
on
    od.cust_code = c.cust_code
group by
    1, 2
order by
    3 desc, 1 desc;
提出情報
提出日時2023/08/28 16:30:24
コンテスト第8回 SQLコンテスト
問題受注件数
受験者takahirostone
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量80 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
80 MB
データパターン2
AC
79 MB