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