ソースコード
with tmp as (
select
    pt.PF_CODE as 都道府県コード,
    p.PF_NAME as 都道府県名,
    max(case when SURVEY_YEAR = 2015 then TOTAL_AMT else null end) as 総人口2015年,
    max(case when SURVEY_YEAR = 2020 then TOTAL_AMT else null end) as 総人口2020年
from
    (
    POPU_TRANSITION as pt
    inner join PREFECTURE as p
        on pt.PF_CODE = p.PF_CODE
    )
group by
    都道府県コード
)
select 
    `都道府県コード`,
    `都道府県名`,
    `総人口2015年`,
    `総人口2020年`,
    round(
        cast(`総人口2020年` as real) / cast(`総人口2015年` as real) * 100,
        0
    ) as 人口増加率
from
    tmp
where
    `総人口2020年` >= `総人口2015年` 
order by
    `人口増加率` desc,
    `都道府県コード` asc
;
提出情報
提出日時2022/07/11 12:24:08
コンテスト練習用コンテスト
問題人口増加率分析
受験者1989
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量78 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
78 MB
データパターン2
AC
78 MB