ソースコード
with POPU_2015 as (
    select PF_CODE , TOTAL_AMT P_2015
    from POPU_TRANSITION
    where SURVEY_YEAR = 2015
)
, POPU_2020 as (
    select PF_CODE , TOTAL_AMT P_2020
    from POPU_TRANSITION
    where SURVEY_YEAR = 2020
)
select A.PF_CODE as '都道府県コード'
    , ( select C.PF_NAME from PREFECTURE  C where C.PF_CODE = A.PF_CODE ) as '都道府県名'
    , A.P_2015 as '総人口2015年'
    , B.P_2020 as '総人口2020年'
    , round( CAST(B.P_2020 as real ) / CAST(A.P_2015 as real )  * 100 ) as 人口増加率
from POPU_2015 A , POPU_2020 B
where A.PF_CODE = B.PF_code 
    and B.P_2020 > A.P_2015 
order by 5 desc , 1 

提出情報
提出日時2023/10/23 16:18:14
コンテスト練習用コンテスト
問題人口増加率分析
受験者hmasa
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量76 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
76 MB
データパターン2
AC
74 MB