我有一些查詢在我的代碼MySQL查詢不工作(同時運行兩個插件)
...
echo $query;
mysql_query($query)
or die(mysql_error());
當我運行此,輸出如下:
INSERT INTO test (c1, c2, c3, c4, c5)
VALUES ('xo', 'VxbcS','rzDMœSfsg', 'œsAcdiNwu','axaWMYOOj');
INSERT INTO test (c1, c2, c3, c4, c5)
VALUES ('ihTnUcBU', 'plKtJdsRT','PyJUPBx', 'f','SspBuWJiK');
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 'INSERT
INTO test (c1, c2, c3, c4, c5) VALUES ('ihTnUcBU', 'plKtJdsRT',' at line 3
,如果我複製插入查詢上面並直接運行它在phpmyadmin,它沒有任何問題。但是當我運行php代碼時它不起作用,有沒有人知道這裏似乎有什麼錯誤?感謝幫助。
感謝您的回覆,我需要一次運行大量的查詢。有沒有其他方法? – bingjie2680
好的,我看到問題..感謝 – bingjie2680