ソースコード
with table_2017 AS(
    select a.area_code
        , 
    from area a
    inner join household_servey s
        on a.area_code = s.area_code
    where s.survey_year = 2012
    group by a.area_code
)

select *
from table_2017;
提出情報
提出日時2023/12/17 22:42:05
コンテスト第10回 SQLコンテスト
問題食料費の割合
受験者sql_yowayowa
状態 (詳細)RE
(Runtime Error: 実行時エラー)
メモリ使用量94 MB
メッセージ
SQLITE_ERROR: near "from": syntax error
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
RE
94 MB
データパターン2
RE
90 MB
データパターン3
RE
84 MB