日期:2014-05-18 浏览次数:20559 次
if object_id('[tb]') is not null drop table [tb] go create table [tb]([ID] int,[H] int,[T] int,[V] int) insert [tb] select 1,1,1,1 union all select 2,1,1,2 union all select 1,2,1,2 union all select 1,3,2,1 union all select 2,3,3,3 union all select 2,2,1,4 go select * from tb t where not exists(select 1 from tb where h=t.h and t=t.t and id>t.id) /** ID H T V ----------- ----------- ----------- ----------- 2 1 1 2 1 3 2 1 2 3 3 3 2 2 1 4 (4 行受影响) **/