コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
with main_2022 as (
select
area_code
, round(cast(food_exp as real) / consumption_exp * 100, 1) as ratio
, dense_rank() over (
order by round(cast(food_exp as real) / consumption_exp * 100, 1) asc
) as rank
from household_survey
where survey_year=2022
),
sub_2017 as (
select
area_code
, round(cast(food_exp as real) / consumption_exp * 100, 1) as ratio
, dense_rank() over (
order by round(cast(food_exp as real) / consumption_exp * 100, 1) asc
) as rank
from household_survey
where survey_year=2017
),
sub_2012 as (
select
area_code
, round(cast(food_exp as real) / consumption_exp * 100, 1) as ratio
, dense_rank() over (
order by round(cast(food_exp as real) / consumption_exp * 100, 1) asc
) as rank
from household_survey
where survey_year=2012
)
select
m22.area_code as CODE
, area_name as NAME
, m22.rank as '2022_RANK'
, m22.ratio || '%' as '2022_RATIO'
, m22.rank as '2017_RANK'
, m22.ratio || '%' as '2017_RATIO'
, m22.rank as '2012_RANK'
, m22.ratio || '%' as '2012_RATIO'
from main_2022 m22
inner join sub_2017 s17 on s17.area_code=m22.area_code
inner join sub_2012 s12 on s12.area_code=m22.area_code
inner join area on area.area_code=m22.area_code
order by m22.rank, m22.area_code desc;
提出情報
提出日時 | 2024/05/10 15:56:06 |
コンテスト | 第10回 SQLコンテスト |
問題 | 食料費の割合 |
受験者 | sjty9561 |
状態 (詳細) | WA (Wrong Answer: 誤答) |
メモリ使用量 | 85 MB |
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
85 MB
データパターン2
WA
84 MB
データパターン3
WA
84 MB