mysql 数据表中查找重复记录

来源:互联网 发布:kk视频录制软件 编辑:程序博客网 时间:2024/05/22 06:53
select user_name,count(*) as count from user_table group by user_name having count>1; 




http://www.jb51.net/article/19080.htm