SQL 中Having 的备忘

找到某个字段有重复的.
select  字段,count(*)
     from hm_employees group by 字段having count(*)>1
原文地址:https://www.cnblogs.com/Bruce_H21/p/1091511.html