如何查询数据库中有没有重复的数据
程序员文章站
2022-06-01 18:22:03
...
怎么查询数据库中有没有重复的数据
在已经添加的数据中可能有重复的数据,怎么把重复的找出来?
------解决方案--------------------
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
相关文章
相关视频