ソースコード
select b.PF_CODE,b.PF_NAME,
case a.SURVEY_YEAR when 2015 then a.TOTAL_AMT end as 総人口2015年,
case c.SURVEY_YEAR when 2020 then c.TOTAL_AMT end as 総人口2020年,
round(100 * cast(c.TOTAL_AMT as real) / cast (a.TOTAL_AMT as real)) as 人口増加率
from POPU_TRANSITION as a
inner join PREFECTURE as b
on a.PF_CODE = b.PF_CODE and a.SURVEY_YEAR = 2015
inner join POPU_TRANSITION as c
on a.PF_CODE = c.PF_CODE and c.SURVEY_YEAR = 2020
order by 人口増加率 desc, a.PF_CODE asc;
提出情報
提出日時2022/07/05 19:31:19
コンテスト練習用コンテスト
問題人口増加率分析
受験者y_n
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量78 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
78 MB
データパターン2
WA
78 MB