ソースコード
select 
    o.CUST_CODE as CODE
    ,max(CUST_NAME) as NAME
    ,count(*) as CNT
    ,sum(ORDER_AMNT) as TTL_AMT
    ,round(avg(ORDER_AMNT),0) as AVG_AMT
from ORDERS o
inner join CUSTOMER c on o.CUST_CODE=c.CUST_CODE
where (ORDER_DATE between '2023-09-01' and '2023-09-30')
group by o.CUST_CODE
having count(*)>=5
order by 3 desc, 5 desc ,1
limit 5;
提出情報
提出日時2024/04/04 13:55:28
コンテスト第10回 SQLコンテスト
問題優良顧客
受験者sjty9561
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
85 MB
データパターン2
AC
85 MB