1
這是代碼的一部分,我用節點JS插入Mysql的不工作
var insertedData = {
name: 'testname',
score: '1337'
};
connect.query('INSERT INTO table SET ?', insertedData, function(error, result){
,這是我得到
{ [Error: ER_PARSE_ERROR: 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 'table SET
name
= 'Hek',score
= '12'' at line 1]code: 'ER_PARSE_ERROR', errno: 1064, sqlState: '42000',index: 0 }
好的發現,但它實際上是一個插入語句。仍然不正確 – Shaharyar
@Shaharyar INSERT ... SET是MySQL中的有效語法。這不是標準的ANSI,但它對於MySQL來說非常好。 – Mureinik
非常感謝,它的工作 –