日期:2014-05-18 浏览次数:20552 次
use Tempdb go --> --> if not object_id(N'Tempdb..#T1') is null drop table #T1 Go Create table #T1([name] nvarchar(1),[types] nvarchar(2),[state] int,[times] Datetime) Insert #T1 select N'A',N'AA',1,'2011-12-30 09:45:54' union all select N'A',N'AA',1,'2011-12-30 09:45:54' union all select N'A',N'AA',1,'2011-12-30 09:45:54' union all select N'A',N'BB',1,'2011-12-30 09:45:54' union all select N'A',N'BB',1,'2011-12-30 09:45:54' union all select N'A',N'BB',1,'2011-12-30 09:45:54' union all select N'A',N'BB',1,'2011-12-30 11:45:54' union all select N'A',N'AA',1,'2011-12-30 11:45:54' union all select N'A',N'AA',2,'2011-12-30 11:45:54' union all select N'A',N'AA',1,'2011-12-30 11:45:54' union all select N'A',N'BB',1,'2011-12-30 11:45:54' union all select N'A',N'BB',2,'2011-12-30 11:45:54' union all select N'A',N'BB',1,'2011-12-30 11:45:54' union all select N'A',N'BB',2,'2011-12-30 11:45:54' Go Select * ,[times2]=(SELECT MAX([times]) FROM #T1 where [name]=a.[name] AND [types]=a.[types] AND DATEDIFF(n,[times],a.[times])<120 AND state=1) from #T1 AS a WHERE [state]=2 /* name types state times times2 A AA 2 2011-12-30 11:45:54.000 2011-12-30 11:45:54.000 A BB 2 2011-12-30 11:45:54.000 2011-12-30 11:45:54.000 A BB 2 2011-12-30 11:45:54.000 2011-12-30 11:45:54.000*/
------解决方案--------------------
create table tables ( a nvarchar, b int, c nvarchar) insert into tables Select 'A',2,'1' union select 'A',3,'2' union SELECT 'a',1,'3' select b.* from (select a ,max(b) s from tables group by a )a, (select * from tables) b where a.a=b.a and a.s=b.b