比如有一张表user_table, 里面有一个字段user_name,我们需要查找user_table表里面有多少个重复的user_name以及出现的次数。这时候,我们可以使用下面的SQL语句来获取:

select user_name,count(*) as count from user_table group by user_name having count>1; 
登录后复制

09-13 20:33