ソースコード
select o.CUST_CODE as CODE, c.CUST_NAME  as NAME, count(*) as CNT, sum(o.ORDER_AMNT) as TTL_AMT, round(avg(o.ORDER_AMNT)) 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'
and (select count(*) from ORDERS group by CUST_CODE)>=5
group by c.CUST_CODE 
order by CNT desc, AVG_AMT desc, CODE
limit 5;
提出情報
提出日時2023/12/18 10:01:36
コンテスト第10回 SQLコンテスト
問題優良顧客
受験者0041
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量99 MB
メッセージ
テストケース(通過数/総数)
1/2
状態
メモリ使用量
データパターン1
WA
99 MB
データパターン2
AC
99 MB