ソースコード
with pop_2015 as (
    select 
        PF_CODE,
        TOTAL_AMT as 総人口2015年
    from POPU_TRANSITION
    where SURVEY_YEAR = 2015
),
pop_2020 as (
    select 
        PF_CODE,
        TOTAL_AMT as 総人口2020年
    from POPU_TRANSITION
    where SURVEY_YEAR = 2020
)
select
    pre.PF_CODE as '都道府県コード',
    pre.PF_NAME as '都道府県名',
    総人口2015年,
    総人口2020年,
    round(
        cast(総人口2020年 as real) /
        cast(総人口2015年 as real) * 100
    ) as '人口増加率'
from PREFECTURE as pre
left join pop_2015 on pre.PF_CODE = pop_2015.PF_CODE
left join pop_2020 on pre.PF_CODE = pop_2020.PF_CODE
where 総人口2020年 >= 総人口2015年
order by 人口増加率 desc, 都道府県コード asc
提出情報
提出日時2022/09/21 08:08:20
コンテスト練習用コンテスト
問題人口増加率分析
受験者sinchir0
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量79 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
79 MB
データパターン2
AC
79 MB