ソースコード
with rslt as (
    select (select min(monthly) from mrr_data) as ym, 0 as mrr
    union all
    select
        date(ym,'+1 month')
        , mrr+(select new_mrr+expansion_mrr-downgrade_mrr-churn_mrr from mrr_data where monthly=ym) 
    from rslt
    where ym<date((select max(monthly) from mrr_data),('1 month'))
)select * from rslt order by ym asc;
提出情報
提出日時2024/05/15 11:47:06
コンテスト第5回 SQLコンテスト
問題MRRの集計
受験者sjty9561
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
84 MB
データパターン2
WA
83 MB
データパターン3
WA
83 MB