ソースコード
select 
    p.pf_code `都道府県コード`, 
    p.pf_name `都道府県名`, 
    (select total_amt from popu_transition pt where pt.pf_code = p.pf_code and survey_year=2015) `総人口2015年`, 
    (select total_amt from popu_transition pt where pt.pf_code = p.pf_code and survey_year=2020) `総人口2020年`,
     (select total_amt from popu_transition pt where pt.pf_code = p.pf_code and survey_year=2020) * 100 / (select total_amt from popu_transition pt where pt.pf_code = p.pf_code and survey_year=2015) `人口増加率`
from 
    Prefecture p 
where 
    `総人口2015年` is not null
order by 
    `人口増加率` desc, `都道府県コード`
提出情報
提出日時2022/07/11 20:14:09
コンテスト練習用コンテスト
問題人口増加率分析
受験者jau5
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量77 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
77 MB
データパターン2
WA
76 MB