首页 > 数据库技术 > 详细

数据库的一个表里筛选出每一人的时间最新的一条记录

时间:2018-12-24 16:55:14      阅读:201      评论:0      收藏:0      [点我收藏+]
 -- 方法1  
    select a.*  
     from table1 a  
     where not exists(select 1  
                      from table1 b  
                      where b.name=a.name and b.gdtime>a.gdtime)  
      
    -- 方法2  
    select a.*  
     from table1 a  
     inner join  
     (select name,  
             max(gdtime) ‘maxgdtime‘  
      from table1  
      group by name) b on a.name=b.name and a.gdtime=b.maxgdtime 

  

数据库的一个表里筛选出每一人的时间最新的一条记录

原文:https://www.cnblogs.com/ttty/p/10169439.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!