コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
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