ソースコード
select
    pt1.PF_CODE as 都道府県コード,
    pr.pf_name as 都道府県名,
    pt1.total_amt as 総人口2015年,
    pt2.total_amt as 総人口2020年,
    round(pt2.total_amt * 100.0 / pt1.total_amt) as 人口増加率
from
    POPU_TRANSITION as pt1
    inner join POPU_TRANSITION as pt2 on pt2.pf_code=pt1.pf_code and pt2.survey_year=2020
    inner join PREFECTURE as pr on pt1.pf_code=pr.pf_code
where
    pt1.survey_year=2015 and
    pt1.total_amt<=pt2.total_amt
order by
    人口増加率 desc,
    都道府県コード
;
提出情報
提出日時2023/04/09 02:40:53
コンテスト練習用コンテスト
問題人口増加率分析
受験者tabr
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量77 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
77 MB
データパターン2
AC
76 MB