sqlserver将一张表中多个字段重复的数据提取出来

2025-03-24 17:00:41
推荐回答(1个)
回答(1):

select * from yourtable group by column1,column2 having (count(id)>1)