ソースコード
select
  po15.PF_CODE as 都道府県コード,
  po15.PF_NAME as 都道府県名,
  po15.TOTAL_AMT as 総人口2015年,
  po20.TOTAL_AMT as 総人口2020年,
  round( ( (po20.TOTAL_AMT - po15.TOTAL_AMT) / cast(po15.TOTAL_AMT as real) + 1) * 100, 0 ) as 人口増加率
-- 人口増加率を%で表示(小数点以下は四捨五入) → 人口増加率

from (
  select 
    pf.PF_CODE,
    pf.PF_NAME,
    TOTAL_AMT
  from
    POPU_TRANSITION as po
  join PREFECTURE as pf on po.PF_CODE = pf.PF_CODE
  where po.SURVEY_YEAR = 2015
) as po15
join POPU_TRANSITION as po20 on po20.PF_CODE = po15.PF_CODE

where
  po20.TOTAL_AMT - po15.TOTAL_AMT > 0

order by
  人口増加率 desc,
  都道府県コード asc
提出情報
提出日時2022/09/07 16:46:35
コンテスト練習用コンテスト
問題人口増加率分析
受験者ytaka95
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量90 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
90 MB
データパターン2
WA
88 MB