mysql 根据某一个字段查询数量大于1的数据

select count(1) from 表名 t GROUP BY t.字段 HAVING count(1)>1;

你可能感兴趣的:(mysql,mysql,数据库)