首页 > 数据库 > MySQL > 正文

获取MySQL的表中每个userid最后一条记录的方法

2024-07-24 13:07:13
字体:
来源:转载
供稿:网友

这篇文章主要介绍了获取MySQL的表中每个userid最后一条记录的方法,并且针对userid不唯一的情况,需要的朋友可以参考下

如下表:

 

 
  1. CREATE TABLE `t1` ( 
  2. `userid` int(11) DEFAULT NULL
  3. `atime` datetime DEFAULT NULL
  4. KEY `idx_userid` (`userid`) 
  5. ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 
  6.  
  7. CREATE TABLE `t1` ( 
  8. `userid` int(11) DEFAULT NULL
  9. `atime` datetime DEFAULT NULL
  10. KEY `idx_userid` (`userid`) 
  11. ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 

数据如下:

 

 
  1. MySQL> select * from t1; 
  2. +--------+---------------------+ 
  3. | userid | atime | 
  4. +--------+---------------------+ 
  5. | 1 | 2013-08-12 11:05:25 | 
  6. | 2 | 2013-08-12 11:05:29 | 
  7. | 3 | 2013-08-12 11:05:32 | 
  8. | 5 | 2013-08-12 11:05:34 | 
  9. | 1 | 2013-08-12 11:05:40 | 
  10. | 2 | 2013-08-12 11:05:43 | 
  11. | 3 | 2013-08-12 11:05:48 | 
  12. | 5 | 2013-08-12 11:06:03 | 
  13. +--------+---------------------+ 
  14. rows in set (0.00 sec) 
  15.  
  16. MySQL> select * from t1; 
  17. +--------+---------------------+ 
  18. | userid | atime | 
  19. +--------+---------------------+ 
  20. | 1 | 2013-08-12 11:05:25 | 
  21. | 2 | 2013-08-12 11:05:29 | 
  22. | 3 | 2013-08-12 11:05:32 | 
  23. | 5 | 2013-08-12 11:05:34 | 
  24. | 1 | 2013-08-12 11:05:40 | 
  25. | 2 | 2013-08-12 11:05:43 | 
  26. | 3 | 2013-08-12 11:05:48 | 
  27. | 5 | 2013-08-12 11:06:03 | 
  28. +--------+---------------------+ 
  29. rows in set (0.00 sec) 

其中userid不唯一,要求取表中每个userid对应的时间离现在最近的一条记录.初看到一个这条件一般都会想到借用临时表及添加主建借助于join操作之类的.

给一个简方法:

 

 
  1. MySQL> select userid,substring_index(group_concat(atime order by atime desc),",",1) as atime from t1 group by userid; 
  2. +--------+---------------------+ 
  3. | userid | atime | 
  4. +--------+---------------------+ 
  5. | 1 | 2013-08-12 11:05:40 | 
  6. | 2 | 2013-08-12 11:05:43 | 
  7. | 3 | 2013-08-12 11:05:48 | 
  8. | 5 | 2013-08-12 11:06:03 | 
  9. +--------+---------------------+ 
  10. rows in set (0.03 sec) 
  11.  
  12. MySQL> select userid,substring_index(group_concat(atime order by atime desc),",",1) as atime from t1 group by userid; 
  13. +--------+---------------------+ 
  14. | userid | atime | 
  15. +--------+---------------------+ 
  16. | 1 | 2013-08-12 11:05:40 | 
  17. | 2 | 2013-08-12 11:05:43 | 
  18. | 3 | 2013-08-12 11:05:48 | 
  19. | 5 | 2013-08-12 11:06:03 | 
  20. +--------+---------------------+ 
  21. rows in set (0.03 sec) 

Good luck!

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表