在Mysql中选择一个表并在其中设置一个值
我正在尝试编写一个脚本,通过将存档列的值设置为 1 来存档用户。我编写了以下脚本来执行此操作,但我不确定我是否正确使用了语法,因为我收到以下错误。
<?php
mysql_query("SELECT FROM archive hqfjt_chronoforms_data_addupdatelead
WHERE cf_uid = '{cf_uid}'
SET archive='1';"
) or die(mysql_error());
?>
我收到的错误是:
您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,了解在第 1 行 'WHERE cf_uid = 'c68235f3fb5c3f7fff6247b04c450dd7' SET archive='1'' 附近使用的正确语法
I am trying to write a script that archives a user by setting the value of the archive column to the value of 1 . I have written the following script to do this, but I am not sure if I am using the syntax correctly as I am am getting the following error.
<?php
mysql_query("SELECT FROM archive hqfjt_chronoforms_data_addupdatelead
WHERE cf_uid = '{cf_uid}'
SET archive='1';"
) or die(mysql_error());
?>
The error I am getting is:
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 'WHERE cf_uid = 'c68235f3fb5c3f7fff6247b04c450dd7' SET archive='1'' at line 1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SELECT
语句中没有SET
,并且缺少FROM
部分。您需要一个
UPDATE
命令,可能类似于:There's no
SET
in aSELECT
statement, and you're missing theFROM
part.You need an
UPDATE
command, perhaps like:更新存档
,而不是选择存档
。另外,您还邀请小鲍比桌来访。UPDATE archive
, notSELECT archive
. Also, you're inviting a visit from little Bobby Tables.