ソースコード
select
    c.CUST_CODE as CODE
    ,cust_name as NAME
    ,count(distinct order_no)as  CNT
    ,sum(ORDER_AMNT	)as TTL_AMT
    ,round(sum(ORDER_AMNT)*1.0/count(distinct order_no))as AVG_AMT
from
    CUSTOMER as c
    join
     ORDERS as o
     on c.CUST_CODE=o.cust_code
where
    o.order_date between '2023-09-01' and '2023-09-30'
group by
    c.cust_code
having
    count(distinct order_no)>=5
order by
    cnt desc,AVG_AMT desc,code asc
limit 5
提出情報
提出日時2023/12/18 09:38:45
コンテスト第10回 SQLコンテスト
問題優良顧客
受験者19820314
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量90 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
90 MB
データパターン2
AC
90 MB