在Mysql中选择一个表并在其中设置一个值

发布于 2024-12-29 07:20:26 字数 435 浏览 0 评论 0原文

我正在尝试编写一个脚本,通过将存档列的值设置为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

很糊涂小朋友 2025-01-05 07:20:26

SELECT 语句中没有 SET,并且缺少 FROM 部分。

您需要一个 UPDATE 命令,可能类似于:

UPDATE archive SET archive='1' WHERE cf_uid = '$cf_uid'

There's no SET in a SELECT statement, and you're missing the FROM part.

You need an UPDATE command, perhaps like:

UPDATE archive SET archive='1' WHERE cf_uid = '$cf_uid'
无声情话 2025-01-05 07:20:26

更新存档,而不是选择存档。另外,您还邀请小鲍比桌来访。

UPDATE archive, not SELECT archive. Also, you're inviting a visit from little Bobby Tables.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文