ソースコード
with temp1 as (
    select
        strftime('%Y-%m', date(sales_date)) as year_month
        , sum(sales_amt) as month_amt
    from sales
    where updated_no is null
    group by year_month
), 
temp2 as (
    select 
        year_month
        , month_amt
        , sum(month_amt) over (
            order by year_month rows between 11 preceding and current row
        ) as year_move_amt
    from temp1
),
temp3 as (
    select 
        year_month
        , month_amt
        , sum(month_amt) over (order by year_month) as cuml_amt
        , year_move_amt
    from temp2
    where year_month between '2023-01' and '2023-12'
)
select
    year_month as 'YEAR_MONTH'
    , month_amt as 'MONTH_AMT'
    , cuml_amt as 'CUML_AMT'
    , year_move_amt as 'YARR_MOVE_AMT'
from temp3
order by year_month;
提出情報
提出日時2024/04/06 00:18:43
コンテスト第11回 SQLコンテスト
問題Zチャート
受験者Udwei22
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
85 MB
データパターン2
WA
84 MB