前提・実現したいこと
MariaDBでテーブルを作成したい。
発生している問題・エラーメッセージ
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-> id not null primary key auto_increment, -> question text not null, ->' at line 2
該当のソースコード
sql
1create table quiz_list ( 2 -> id not null primary key auto_increment, 3 -> question text not null, 4 -> choices-1 text not null, 5 -> choices-2 text not null, 6 -> choices-3 text not null, 7 -> choices-4 text not null, 8 -> correct text not null, 9 -> disclosure_flag int(1) not null);
補足情報(FW/ツールのバージョンなど)
MariaDB
SQL
macOS
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/05 11:45
2021/01/05 11:57 編集