MySQL - select 子句的奇怪返回

发布于 2024-12-28 12:30:45 字数 182 浏览 2 评论 0原文

为什么以下子句不返回每个 userId 的上次连接日期?
我的表中有 31 个不同的用户 ID,每个用户 ID 都有许多日期......

select userid, date from connections group by userid having date = max(date)

Why does the following clause does not return, for each userId, it's last connection date ?
I have 31 distinct userids in the table, each one with many dates...

select userid, date from connections group by userid having date = max(date)

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

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

发布评论

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

评论(1

放肆 2025-01-04 12:30:45

为什么要添加 having 限定符?如果您想要每个用户上次连接的最大日期,请尝试以下操作:

select userid, max(date) from connections group by userid;

Why are you adding the having qualifier? If you want max date for each user's last connection try this:

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