当前位置: > 数据库 > SQL Server 2008 >

数据库取得最新的不重复数据

时间:2019-04-23 12:45来源:linux.it.net.cn 作者:IT
数据库中有个简单的表,两个字段:num 和 endDate

数据Sample如下:

test num endDate 01 2013/8/1 02 2013/8/2 01 2013/8/3 03 2013/8/4
现在想取得每个num的最新endDate数据

SQL语句如下:

select * from test as a
where exists
(select 1 from test where num=a.num group by num having max(endDate)=a.endDate)
order by num;

 

结果如下:

查询1 num endDate 01 2013/8/3 02 2013/8/2 03 2013/8/4


(责任编辑:IT)
------分隔线----------------------------