gpt4 book ai didi

mysql - INSERT INTO 不适用于最新的 xampp

转载 作者:行者123 更新时间:2023-11-29 08:33:15 25 4
gpt4 key购买 nike

$query = "INSERT INTO $stats_table_name (name, name_ID, anz_aufruf) VALUES ($plan_name, $plan_nr, $anz)";
echo "<br />".$query."<br />";
if (!mysql_query($query) && !$error) {
die (mysql_error());
}

mysql-error 告诉我:

INSERT INTO 'p_stats' ('name', 'name_ID', 'anz_aufruf') VALUES ('Laptop 1', '1', '95')
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 ''p_stats' ('name', 'name_ID', 'anz_aufruf') VALUES ('Laptop 1', '1', '95')' at line 1

这里的代码哪里错了?

最佳答案

错误是用单引号引起来的表名称。

表名和列名都是标识符。如果名称是带反引号的保留关键字,则它们应该换行(如果不是可选的)。单引号用于字符串文字。

关于mysql - INSERT INTO 不适用于最新的 xampp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15967300/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com