Maison >développement back-end >tutoriel php >如何查询数据库中有没有重复的数据
怎么查询数据库中有没有重复的数据
在已经添加的数据中可能有重复的数据,怎么把重复的找出来?
------解决方案--------------------
select * from test a inner join (select title from test group by title having(count(*)) >1) b on a.title=b.title