为每个用户 ID MS Sql Server 选择最新的日期时间
我有一张桌子用来聊天。其中有一个名为 userid 的字段和一个名为 timesent 的字段。我需要知道表中每个用户 ID 的最新发送时间,以便如果他们 3 分钟没有说话,我可以将其从表中删除,在这种情况下我会假设他们已经消失了。
我真的无法破解这个坚果...我该如何查询。
我当然可以将其拆分并首先选择所有用户 ID,然后循环它们并在我的方法中选择前 1 次发送,但我想知道单独的 sql 是否可以做到这一点,所以我不需要执行大量查询。
I have a table used for a chat. Among others there is a field called userid and a field called timesent. I need to know the latest timesent for each userid in the table, so that I can delete them from the table if they haven't said anything for 3 minutes, in which case I will assume they are gone.
I can't really crack this nut... How do I query.
I could of course split it up and first select all the userids and then loop through them and select top 1 timesent in my method, but I was wondering if sql alone can do the trick, so I don't need to execute tons of queries.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要获取每个
userid
的最新timesent
,您可以使用MAX
或者执行指定的
delete
,您可以使用To get the latest
timesent
peruserid
you can useMAX
Or to do the specified
delete
you can use