ソースコード
with survey2015 as (
  select
    PF_CODE,
    TOTAL_AMT
  from
    POPU_TRANSITION
  where
    SURVEY_YEAR = 2015
),
survey2020 as (
  select
    PF_CODE,
    TOTAL_AMT
  from
    POPU_TRANSITION
  where
    SURVEY_YEAR = 2020
)
select
  survey2015.PF_CODE as "都道府県コード",
  PREFECTURE.PF_NAME as "都道府県名",
  survey2015.TOTAL_AMT as "総人口2015年",
  survey2020.TOTAL_AMT as "総人口2020年",
  round(cast(survey2020.TOTAL_AMT as real) / survey2015.TOTAL_AMT * 100) as "人口増加率"
from
  survey2015
inner join
  survey2020
  on survey2015.PF_CODE = survey2020.PF_CODE
inner join
  PREFECTURE
  on PREFECTURE.PF_CODE = survey2015.PF_CODE
where
  "総人口2020年" >= "総人口2015年"
order by
  "人口増加率" desc,
  "都道府県コード"

提出情報
提出日時2022/07/20 18:43:05
コンテスト練習用コンテスト
問題人口増加率分析
受験者amedama
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量105 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
105 MB
データパターン2
AC
99 MB