为什么此 SQL 会出现“组函数无效使用”错误?

发布于 2024-09-09 01:06:08 字数 756 浏览 4 评论 0 原文

这是当用户从我的网站按注销时运行的简单查询。

UPDATE `user_logins` 
   SET `active` = 0 
 WHERE `user_id` = 3 
   AND `datetime` = MAX(`datetime`) LIMIT 1

user_id 值与 PDO 绑定在其中。

我抛出以下异常

群组功能使用无效

谷歌搜索似乎说这是因为我在 WHERE 子句中使用了聚合函数。

我还在 Stack Overflow 上发现了这个 问题,但正在使用 HAVING 似乎对我不起作用。我尝试用 HAVING 替换 AND

如何更改此查询以不使用聚合(或使用 HAVING),但仍执行相同的功能?

非常感谢!

This is a simple query ran when the user presses logout from my website

UPDATE `user_logins` 
   SET `active` = 0 
 WHERE `user_id` = 3 
   AND `datetime` = MAX(`datetime`) LIMIT 1

The user_id value is binded in there with PDO.

I get the following exception thrown

Invalid use of group function

Googling around seems to say that it is because I am using an aggregate function in a WHERE clause.

I also found this question on Stack Overflow, but playing around with HAVING didn't seem to work for me. I tried replacing the AND with HAVING.

How can I change this query to not use the aggregate (or to use HAVING), but still perform the same functionality?

Thanks a bunch!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

江湖彼岸 2024-09-16 01:06:08

您可以使用 ORDER BYLIMIT

UPDATE `user_logins` SET `active` = 0
WHERE `user_id` = 3
ORDER BY `datetime` DESC
LIMIT 1;

这会将该用户的最高日期时间放在第一位,而 LIMIT 1 将确保只有如果有多个记录与查询匹配,则更新第一条记录。

You could use ORDER BY and LIMIT:

UPDATE `user_logins` SET `active` = 0
WHERE `user_id` = 3
ORDER BY `datetime` DESC
LIMIT 1;

That will put the highest date time for that user first, and the LIMIT 1 will ensure that only the first record gets updated if more than one record matches the query.

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