Home > Article > Backend Development > 求mysql 查询重复数据的解决方法
php mysql 数据
比如一个用户表,username 有相同的,怎么把这些相同的名字都查出来,,,,,, 假设你的用户表有个主键id
select * from 用户表 t where exists(select 1 from 用户表 where username=t.username and id t.id);
select * from tbname group by name having count(name)>1
灰常感谢!!!