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