ソースコード
select  p.pf_code 都道府県コード
        ,p.pf_name 都道府県名
        ,t1.TOTAL_AMT 総人口2015年
        ,t2.TOTAL_AMT 総人口2020年
        ,round(cast(t2.total_amt as real)/cast(t1.total_amt as real),0) 人口増加率
  from  PREFECTURE p
        ,POPU_TRANSITION t1
        ,POPU_TRANSITION t2
 where  p.PF_code = t1.PF_code
   and  p.pf_code = t2.pf_code
   and  t1.SURVEY_YEAR = '2015'
   and  t2.SURVEY_YEAR = '2020'
   and  t2.total_amt > t1.total_amt
 order by 人口増加率 desc,p.pf_code
提出情報
提出日時2022/10/18 22:51:00
コンテスト練習用コンテスト
問題人口増加率分析
受験者ksw_201815
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量77 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
77 MB
データパターン2
WA
76 MB