当前位置:   article > 正文

使用SQL查询数据库中重复的数据的的三种方法_sql查询重复数据

sql查询重复数据

第一种方法

select username count(*) u from user_info group by  username having u>1

第二种方法

select username count(*) from user_info group by username having count(username)>1

第三种方法,查询速度较慢

select username from user_info where username = (select username from user_info group by username having count(username)>1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/524704
推荐阅读
相关标签
  

闽ICP备14008679号