ソースコード
with ratio as(
select
    a.area_name as NAME,
    h.consumption_exp as 消費支出,
    h.food_exp as 食糧費,
    h.survey_year as 調査年,
    round(cast(h.food_exp as REAL) / cast(h.consumption_exp as REAL)*100, 1) || "%" as 平均
from
    household_survey as h
inner join
    area as a
on
    a.area_code = h.area_code
)

select _, NAME,調査年,平均 from ratio
where 調査年 = 2012
order by 平均 desc, 調査年
提出情報
提出日時2023/12/15 14:37:12
コンテスト第10回 SQLコンテスト
問題食料費の割合
受験者UT
状態 (詳細)RE
(Runtime Error: 実行時エラー)
メモリ使用量84 MB
メッセージ
SQLITE_ERROR: no such column: _
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
RE
84 MB
データパターン2
RE
84 MB
データパターン3
RE
84 MB