当前位置:Gxlcms > PHP教程 > 如何查询数据库中有没有重复的数据

如何查询数据库中有没有重复的数据

时间:2021-07-01 10:21:17 帮助过:79人阅读

怎么查询数据库中有没有重复的数据
在已经添加的数据中可能有重复的数据,怎么把重复的找出来?

------解决方案--------------------
select * from test a inner join (select title from test group by title having(count(*)) >1) b on a.title=b.title

人气教程排行