首页 > 数据库技术 > 详细

根据时间获取最新数据 SQL(每一个人或者每一项)

时间:2017-11-03 19:59:49      阅读:425      评论: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

测试三百万条数据查询后,方法2查询速度更快,建议使用第二种 关联查询法

 

根据时间获取最新数据 SQL(每一个人或者每一项)

原文:http://www.cnblogs.com/linyijia/p/7779671.html

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