怎么查询数据库中有没有重复的数据
在已经添加的数据中可能有重复的数据,怎么把重复的找出来?
------解决方案--------------------
select * from test a inner join (select title from test group by title having(count(*)) >1) b on a.title=b.title
怎么查询数据库中有没有重复的数据
在已经添加的数据中可能有重复的数据,怎么把重复的找出来?
------解决方案--------------------
select * from test a inner join (select title from test group by title having(count(*)) >1) b on a.title=b.title
本文是由「 秘密武器开发者中心」编写整理,所有内容的版权归原作者所有。如果侵犯了您的权益,请联系我删除