MySQLに値を保存しようとしているのですが、以下の構文エラーが表示され保存することが出来ません。
MySQL
1ERROR 1064 (42000): 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 'condition, create_date, update_date, product_id, creator_id, combination_id, dis' at line 1
構文におかしい箇所等ありましたら教えて頂けないでしょうか。
実行した構文とテーブルの詳細は以下になります。
MySQL
1INSERT INTO dtb_live_authority_role (condition, create_date, update_date, product_id, creator_id, combination_id, discriminator_type) VALUES ('test', '2020-05-15 02:25:32', '2020-05-15 02:25:32', 1, 1, 1, 'liveauthorityrole');
MySQL
1+--------------------+----------------------+------+-----+---------+----------------+ 2| Field | Type | Null | Key | Default | Extra | 3+--------------------+----------------------+------+-----+---------+----------------+ 4| id | int(10) unsigned | NO | PRI | NULL | auto_increment | 5| product_id | int(10) unsigned | YES | MUL | NULL | | 6| creator_id | int(10) unsigned | YES | MUL | NULL | | 7| combination_id | smallint(5) unsigned | YES | MUL | NULL | | 8| condition | varchar(255) | NO | | NULL | | 9| create_date | datetime | NO | | NULL | | 10| update_date | datetime | NO | | NULL | | 11| discriminator_type | varchar(255) | NO | | NULL | | 12+--------------------+----------------------+------+-----+---------+----------------+
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/15 03:45
2020/05/15 03:52 編集
2020/05/15 04:07 編集
2020/05/15 04:23
2020/05/15 04:41
2020/05/15 04:43