gpt4 book ai didi

php - 运行 MySQL 查询时出错,寻找正确的语法

转载 作者:行者123 更新时间:2023-11-29 01:17:04 26 4
gpt4 key购买 nike

运行 .php 文件时出现以下错误:

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 ''feeds_list' SET 'cron' = now() WHERE 'feed_id' = '1'' at line 1

代码如下:

$sql = mysql_query("UPDATE 'feeds_list' SET 'cron' = now() WHERE 'feed_id' = '$feed_id'") or die (mysql_error());

谢谢你帮助我

最佳答案

去掉表名和列名周围的'',应该是:

UPDATE feeds_list SET cron = now() WHERE feed_id = '$feed_id'

或使用反引号 (``)。

关于php - 运行 MySQL 查询时出错,寻找正确的语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17698656/

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