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