博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql 分组查询并取出各个分组中时间最新的数据
阅读量:4956 次
发布时间:2019-06-12

本文共 217 字,大约阅读时间需要 1 分钟。

表  t_user_info

id  groupid  content  lasttime

select  *  from t_user_info t where not exists

(select * from t_user_info where groupid= t.groupid and t.lasttime<lasttime)

 

转载于:https://www.cnblogs.com/isawu/p/10916786.html

你可能感兴趣的文章