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