ソースコード
with tmp as(
select MONTHLY as YM,
NEW_MRR,EXPANSION_MRR,DOWNGRADE_MRR,CHURN_MRR
  from MRR_DATA
union
select date(max(MONTHLY),'+1 months'),
0,0,0,0
  from MRR_DATA)
select YM,
case when YM = min(YM) over()
     then 0
     else sum(NEW_MRR) over(order by YM Rows between Unbounded Preceding and 1 Preceding)
         +sum(EXPANSION_MRR) over(order by YM Rows between Unbounded Preceding and 1 Preceding)
         -sum(DOWNGRADE_MRR) over(order by YM Rows between Unbounded Preceding and 1 Preceding)
         -sum(CHURN_MRR) over(order by YM Rows between Unbounded Preceding and 1 Preceding) end as MRR
  from tmp
order by YM;
提出情報
提出日時2023/02/19 20:45:44
コンテスト第5回 SQLコンテスト
問題MRRの集計
受験者AketiJyuuzou
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量92 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
81 MB
データパターン2
AC
85 MB
データパターン3
AC
92 MB