ソースコード
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
left outer join
customer c
on c.cust_code = o.cust_code
where order_date >= '2023-09-01' and order_date <= '2023-09-30'
group by o.cust_code
having count(*) < 5
order by count(*) and round(avg(o.order_amnt)) and o.cust_code;
提出情報
提出日時2023/12/16 16:58:43
コンテスト第10回 SQLコンテスト
問題優良顧客
受験者Otake
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量86 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
86 MB
データパターン2
WA
85 MB