ソースコード
select
      po.PF_CODE as 都道府県コード
    , pf.PF_NAME as 都道府県名
    , po.TOTAL_AMT as 総人口2015年
    , po2020.TOTAL_AMT as 総人口2020年
    , round(cast(po2020.TOTAL_AMT as real) / cast(po.TOTAL_AMT as real) * 100) as 人口増加率
from
    POPU_TRANSITION as po
    join PREFECTURE as pf
        on po.PF_CODE = pf.PF_CODE
    join POPU_TRANSITION as po2020
        on po.PF_CODE = po2020.PF_CODE
        and po2020.SURVEY_YEAR = 2020
where
    po.SURVEY_YEAR = 2015
    and 総人口2015年 < 総人口2020年
order by
    人口増加率 desc, 都道府県コード asc;
提出情報
提出日時2022/12/27 16:51:31
コンテスト練習用コンテスト
問題人口増加率分析
受験者2takumax
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量79 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
79 MB
データパターン2
AC
79 MB