コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
select
o.cust_code as CODE,
cust_name as NAME,
count(o.cust_code) as CNT,
sum(ORDER_AMNT) as TTL_AMT,
round(cast(sum(ORDER_AMNT) as real)/cast(count(o.cust_code) as real),0) as AVG_AMT
from orders as o
inner join customer as c
on c.cust_code=o.cust_code
where order_date between '2023-09-01' and '2023-09-30'
group by o.cust_code
having count(o.cust_code)>=5
order by cnt desc,avg_amt desc,code;
提出情報
提出日時 | 2024/07/07 17:24:36 |
コンテスト | 第10回 SQLコンテスト |
問題 | 優良顧客 |
受験者 | kate |
状態 (詳細) | WA (Wrong Answer: 誤答) |
メモリ使用量 | 85 MB |
メッセージ
テストケース(通過数/総数)
1/2
状態
メモリ使用量
データパターン1
AC
85 MB
データパターン2
WA
85 MB