查找重复.sql 228 B

1234567
  1. --查找表里重复记录;
  2. select * from client where id in(select id from client group by id having count(id)>2)
  3. --查找出哪个id重复了记录;
  4. select id from client group by id having count(*)>1
  5. --使用group by清除重复的,不使用distinct