ソースコード
with
    t as (
        select
            cust_code
            ,order_amnt
            ,count(order_amnt) over (partition by cust_code) as cnt
        from
            orders
        where
            order_date >= '2023-09-01'
            and order_date <= '2023-09-30'
    )
    
select
    t.cust_code as CODE
    ,c.cust_name as NAME
    ,t.cnt as CNT
    ,sum(t.order_amnt) as TTL_AMT
    ,round(avg(cast(t.order_amnt as real)), 0) as AVG_AMT
from
    t
join
    customer as c
on
    t.cust_code = c.cust_code
where
    cnt >= 5
group by
    1, 2, 3
order by
    cnt desc
    ,avg_amt desc
    ,code
limit
    5
提出情報
提出日時2023/12/15 22:47:11
コンテスト第10回 SQLコンテスト
問題優良顧客
受験者takahirostone
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
84 MB
データパターン2
AC
84 MB