コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
with tmp1 as (
select
sales_date,
strftime('%w',date(sales_date)) as weekno,
substr('日月火水木金土',strftime('%w',sales_date)+1,1) as WEEK,
sales_amt,
sales_type,
updated_no,
1 as countnum
from sales
where sales_date between '2024-03-01' and '2024-03-28'
and sales_type<>2
and updated_no is null
),
tmp2 as (
select
weekno,
WEEK,
sum(sales_amt) as sumamt,
count(sales_date) as weekcount
from tmp1
group by week
),
tmp3 as (
select
cast(row_number() over(order by sales_date)-1 as string) as no,
substr('日月火水木金土',row_number() over(order by sales_date),1) as WEEK_
from sales
)
select
WEEK_,
ifnull(round(1.0*weekcount/4,0),0) as AVG_CNT,
printf('%,d円',round(1.0*sumamt/4,0)) as AVG_AMT
from tmp2
right outer join (
select * from tmp3
where no between 0 and 6)
on weekno=no
order by no;
提出情報
提出日時 | 2024/12/28 17:51:58 |
コンテスト | 第12回 SQLコンテスト |
問題 | 曜日別売上分析 |
受験者 | kate |
状態 (詳細) | WA (Wrong Answer: 誤答) |
メモリ使用量 | 86 MB |
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
86 MB
データパターン2
WA
85 MB