1:编写Sql语句,查询id重复3次以上的条目,表为Pram(id,name)
先看建立的表:
SQL语句: 直接使用一个子查询即可
select * from Pram where id in(select id from Pram group by id having COUNT(id)>3)
结果: