查询重复的所有数据(包括重复的数据):
select * from @t where 数据 in( select 数据 from @t group by 数据 having count(*)>1)
查询重复的所有数据(不包括重复的数据):
select distinct 数据 from @t where 数据 in( select 数据 from @t group by 数据 having count(*)>1)
查询重复的所有数据(包括重复的数据):
select * from @t where 数据 in( select 数据 from @t group by 数据 having count(*)>1)
查询重复的所有数据(不包括重复的数据):
select distinct 数据 from @t where 数据 in( select 数据 from @t group by 数据 having count(*)>1)