ソースコード
select
    *
from(
    select
        a.PF_CODE as 都道府県コード,
        PF_NAME as 都道府県名,
        sum(
            case
                when survey_year = 2015 then total_amt
                else 0
            end 
        ) as 総人口2015年,
        sum(
            case
                when survey_year = 2020 then total_amt
                else 0
            end 
        ) as 総人口2020年,
        round(
            100.0 * 
            sum(
            case
                when survey_year = 2020 then total_amt
                else 0
            end 
        ) /     sum(
            case
                when survey_year = 2015 then total_amt
                else 0
            end 
        ) , 0) as 人口増加率
    from
        POPU_TRANSITION as a
        inner join PREFECTURE as  b
        on a.pf_code = b.pf_code
    where
        survey_year in (2015, 2020)
    group by
        都道府県コード,
        都道府県名
    )
where
    総人口2020年 > 総人口2015年
order by
    人口増加率 desc,
    都道府県コード
提出情報
提出日時2022/07/11 21:16:05
コンテスト練習用コンテスト
問題人口増加率分析
受験者nena
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量81 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
80 MB
データパターン2
AC
81 MB