ソースコード
select 
    pt.pf_code as "都道府県コード",
    pr.pf_name as "都道府県名",
    pt.total_amt_2015 as "総人口2015年",
    pt.total_amt_2020 as "総人口2020年",
    round(pt.total_amt_2020 * 100.0 / pt.total_amt_2015, 0) as "人口増加率"
from (
    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
    where 
        survey_year in (2015, 2020)
    group by 
        pf_code 
) pt 
left join 
    prefecture pr 
    on pt.pf_code = pr.pf_code 
where 
    pt.total_amt_2015 < pt.total_amt_2020
order by 
    "人口増加率" desc, 
    "都道府県コード" asc 
提出情報
提出日時2024/09/08 03:19:13
コンテスト練習用コンテスト
問題人口増加率分析
受験者TKita
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
84 MB
データパターン2
AC
84 MB