mysql 数据表中查找重复记录时间:2022-10-22 22:17:19以下sql语句可以实现查找出一个表中的所有重复的记录 select user_name,count(*) as count from user_table group by user_name having count>1;