标签:group by 查询 from 字段 相同 个数 table select 分组查询
--查出表中有重复的id的记录,并计算相同id的数量
select id,count(id) from @table group by id having(count(id)>1)
其中,group by id,是按id字段分组查询:
select id,count(id) from @table group by id
select id,count(id) from @table group by id order by count(id)
可以得到各不同id的数量合计
having(count(id)>1)判断数量大于1,也就是有重复id的记录
标签:group by 查询 from 字段 相同 个数 table select 分组查询
原文地址:http://www.cnblogs.com/dayang12525/p/7731566.html