查询表中某字段有重复记录个数的方法_MsSql

  • A+
所属分类:MSSQLSERVER



--查出表中有重复的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


可以得到各不同id的数量合计


 


having(count(id)>1)判断数量大于1,也就是有重复id的记录


  • 我的微信
  • 这是我的微信扫一扫
  • weinxin
  • 我的微信公众号
  • 我的微信公众号扫一扫
  • weinxin

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: