tctip demo页面>

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

 -- 方法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 

  

posted @ 2018-12-24 16:45  张怼怼吖  阅读(961)  评论(0编辑  收藏  举报