gpt4 book ai didi

php - UPDATE SET 获取 MySQL 错误

转载 作者:行者123 更新时间:2023-12-01 00:45:03 24 4
gpt4 key购买 nike

您好,我有一个读取计数器,但我总是收到 MySQL 错误:

MySQL 错误:您的 SQL 语法有误;检查与您的 MySQL 服务器版本对应的手册,了解在第 1 行的 ''reads') VALUES ('2') WHERE id = '20'' 附近使用的正确语法

    $reads = $row['reads']+1;
$newsid = $row['id'];

if(!$query = $db->query("UPDATE cmsss_news_articles SET reads = '$reads' WHERE id = '$newsid'")) {
echo "<center><b>Error, cant update row</b></center>";
}

你能帮我看看错在哪里吗?

最佳答案

readsreserved word in MySQL .用反引号转义它。

UPDATE cmsss_news_articles 
SET `reads` = '$reads'
...

关于php - UPDATE SET 获取 MySQL 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23385501/

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