我遇到了以下问题: 我需要在我的数据库中插入一些数据: 这是我的片段连接到基地:
$insertID = $model::$db->insert('INSERT INTO table (external_data_ignored) WHERE id = "'. $siteId . '" VALUES (\''.$link.'\')');
现在我收到了错误:
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 'WHERE id = "5" VALUES ('http://www.bretagneurlaub.de/')' at line 1
非常感谢!
答案 0 :(得分:1)
它似乎与您在查询中使用的“Where”相关,请使用以下代码
$insertID = $model::$db->insert('INSERT INTO table (external_data_ignored) VALUES (\''.$link.'\')');