SQL Server中,如何筛选出某一字段重复的记录?时间:2023-02-02 15:13:49解决方案 select a.* from 表 a where exists(select 1 from 表 where 字段2=a.字段2 and 字段1!=a.字段1) 参考 http://topic.csdn.net/t/20051228/10/4485581.html