ソースコード
select
    p.pf_code as '都道府県コード'
    ,p.pf_name as '都道府県名'
    ,t2015.total_amt as '総人口2015年'
    ,t2020.total_amt as '総人口2020年'
    ,round(cast(t2015.total_amt as real) / cast(t2020.total_amt as real) * 100) as '人口増加率'
from
    prefecture p
join
    (select
        *
    from
        popu_transition
    where
        survey_year = 2015
    ) t2015
on
    p.pf_code = t2015.pf_code
join
    (select
        *
    from
        popu_transition
    where
        survey_year = 2020
    ) t2020
on
    p.pf_code = t2020.pf_code
order by
    5 desc, 1 asc
提出情報
提出日時2022/07/20 17:36:12
コンテスト練習用コンテスト
問題人口増加率分析
受験者takahirostone
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量105 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
105 MB
データパターン2
WA
104 MB