ソースコード
with rank_2017 as 
(
 select 
  s.area_code as CODE 
  ,area_name as NAME 
  ,rank() over (order by round(100.0 * food_exp / consumption_exp, 1)) as '2017_RANK'
  ,round(100.0 * food_exp / consumption_exp, 1) || '%' as '2017_RATIO'
from household_survey as s 
inner join area as a 
  on s.area_code = a.area_code 
where survey_year = 2017
group by 1,2
)
,rank_2012 as 
(
 select 
  s.area_code as CODE 
  ,area_name as NAME 
  ,rank() over (order by round(100.0 * food_exp / consumption_exp, 1)) as '2012_RANK'
  ,round(100.0 * food_exp / consumption_exp, 1) || '%' as '2012_RATIO'
from household_survey as s 
inner join area as a 
  on s.area_code = a.area_code 
where survey_year = 2012
group by 1,2
)
,rank_2022 as 
(
 select 
  s.area_code as CODE 
  ,area_name as NAME 
  ,rank() over (order by round(100.0 * food_exp / consumption_exp, 1)) as '2022_RANK'
  ,round(100.0 * food_exp / consumption_exp, 1) || '%' as '2022_RATIO'
from household_survey as s 
inner join area as a 
  on s.area_code = a.area_code 
where survey_year = 2022
group by 1,2
)
select 
  CODE
  ,NAME 
  ,rank_2022.'2022_RANK' 
  ,rank_2022.'2022_RATIO'
  ,rank_2017.'2017_RANK'
  ,rank_2017.'2017_RATIO'
  ,rank_2012.'2012_RANK'
  ,rank_2012.'2012_RATIO'
from rank_2022
inner join rank_2017 using(code, name)
inner join rank_2012 using(code, name)

order by rank_2022.'2022_RANK' asc , CODE desc 
;
提出情報
提出日時2023/12/18 10:06:57
コンテスト第10回 SQLコンテスト
問題食料費の割合
受験者hattsuriboy
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量99 MB
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
99 MB
データパターン2
WA
85 MB
データパターン3
WA
99 MB