ソースコード
with
a(a1,a2,a3,a4)
as (
select
pr.pf_code,
pr.pf_name,
max(case po.survey_year when 2015 then po.total_amt else null end) as sum1,
max(case po.survey_year when 2020 then po.total_amt else null end) 
from
POPU_TRANSITION po,
PREFECTURE pr
where
po.pf_code = pr.pf_code
and po.survey_year in ('2015','2020')
)
select 
a1 as '都道府県コード',
a2 as '都道府県名',
a3 as '総人口2015年',
a4 as '総人口2020年',
round(100*cast(a4 as real)/cast(a3 as real)) as '人口増加率'
from a
order by
5 desc,1
提出情報
提出日時2022/09/17 10:16:11
コンテスト練習用コンテスト
問題人口増加率分析
受験者KT04
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量77 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
77 MB
データパターン2
WA
76 MB