标签:记录 use logs bsp mysql 重复 count round span
以下sql语句可以实现查找出一个表中的所有重复的记录
select user_name,count(*) as count from user_table group by user_name having count>1;
mysql 数据表中查找重复记录
原文地址:http://www.cnblogs.com/boystar/p/6882351.html