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