这是我的一次笔试题,是查询一个表(id,name)中重复的记录: sql语句:select * from 表名 where name in (select name from 表名 having count(name)>1)