一、查询重复的字段,和重复的数量
select count(字段名) AS count ,字段名 from 表名 group by 字段名 having count(字段名) > 1;
如:有一个表为“resource”有字段ID、name、password,查询重复的name有多少,分别是谁
select count(‘name’) AS count ,‘name’ from resource group by ‘name’ having count(‘name’) > 1;
结果: ,count为重复数量,name为重复的值