我正在尝试插入多行,但我继续收到 sqlerror 并且无法为我的生活找出原因。
echo '"'.$thequery.'"';
$sql = mysql_query($thequery) or die(mysql_error());
return "SUCCESS";
$thequery 打印为:“INSERT INTO thistable (rank, change, reqID, vanID) VALUES (1,'PICKUP',28,1),(2,'PICKUP',29,1),(3,'DROPOFF ',28,1),(4,'DROPOFF',29,1)"
和错误:您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,以了解在 'change, reqID, vanID) VALUES (1,'PICKUP',28,1),(2,'PICKUP',29,1),( 3,'DROPOFF',28' 在第 1 行
先谢谢了。