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