コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
select
c.CUST_CODE as code
,cust_name as name
,count(distinct order_no)as CNT
,sum(ORDER_AMNT )asTTL_AMT
,round(sum(ORDER_AMNT)*1.0/count(distinct order_no))as AVG_AMT
from
CUSTOMER as c
join
ORDERS as o
on c.CUST_CODE=o.cust_code
where
o.order_date between '2023-09-01' and '2023-09-30'
group by
c.cust_code
having
count(distinct order_no)>=5
order by
cnt desc,AVG_AMT desc,code asc
limit 5
提出情報
提出日時 | 2023/12/18 09:37:24 |
コンテスト | 第10回 SQLコンテスト |
問題 | 優良顧客 |
受験者 | 19820314 |
状態 (詳細) | WA (Wrong Answer: 誤答) |
メモリ使用量 | 90 MB |
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
89 MB
データパターン2
WA
90 MB