ソースコード
with 
t as (
    select 
        pf_code
        , max(case when survey_year == 2015 then total_amt else 0 end) as total_amt_2015
        , max(case when survey_year == 2020 then total_amt else 0 end) as total_amt_2020
    from popu_transition
    group by 1
)
select 
    pf_code as 都道府県コード
    , pf_name as 都道府県名
    , total_amt_2015 as 総人口2015年
    , total_amt_2020 as 総人口2020年
    , round(cast(total_amt_2020 as real) / total_amt_2015 * 100, 0) as 人口増加率
from t 
left join prefecture using(pf_code)
order by 5 desc, 1 asc
;
提出情報
提出日時2022/07/19 23:18:13
コンテスト練習用コンテスト
問題人口増加率分析
受験者rise3812
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
78 MB
データパターン2
WA
84 MB