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