ソースコード
select
    pt.pf_code 都道府県コード, 
    p.pf_name 都道府県名,
    sum(case when pt.survey_year = 2015 then pt.total_amt else 0 end) 総人口2015年,
    sum(case when pt.survey_year = 2020 then pt.total_amt else 0 end) 総人口2020年,
    round(
        sum(case when pt.survey_year = 2020 then pt.total_amt else 0 end) * 100
        /
        sum(case when pt.survey_year = 2015 then pt.total_amt else 0 end)
    ) 人口増加率
from POPU_TRANSITION pt
join PREFECTURE p on pt.pf_code = p.pf_code
where 1 = 1
and pt.survey_year in (2015, 2020)
group by pt.pf_code, p.pf_name
having
    sum(case when pt.survey_year = 2020 then pt.total_amt else 0 end) 
    >
    sum(case when pt.survey_year = 2015 then pt.total_amt else 0 end) 
order by 人口増加率 desc, 都道府県コード asc
;
提出情報
提出日時2024/11/02 16:43:30
コンテスト練習用コンテスト
問題人口増加率分析
受験者negroponte
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量86 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
86 MB
データパターン2
WA
85 MB