コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
with tmp1 as (
select
substr(sales_date,1,7) as YEAR_MONTH,
sum(sales_amt) as MONTH_AMT
from sales
where updated_no is null
group by year_month
),
tmp2 as (
select
*,
sum(month_amt) over(order by year_month rows between 11 preceding and current row) as YEAR_MOVE_AMT
from tmp1
),
tmp3 as (
select
*,
sum(month_amt) over(order by year_month rows between unbounded preceding and current row) as CUML_AMT
from tmp1
where year_month between '2023-01' and '2023-12'
)
select
*
from tmp3
inner join tmp2
on tmp2.year_month=tmp3.year_month;
提出情報
提出日時 | 2024/08/13 23:06:36 |
コンテスト | 第11回 SQLコンテスト |
問題 | Zチャート |
受験者 | kate |
状態 (詳細) | AC (Accepted: 正答) |
メモリ使用量 | 85 MB |
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
84 MB
データパターン2
AC
85 MB