Finding duplicate values in a SQL table

后端 未结 30 4017
南旧
南旧 2020-11-21 13:18

It\'s easy to find duplicates with one field:

SELECT name, COUNT(email) 
FROM users
GROUP BY email
HAVING COUNT(email) > 1

So if we have

30条回答
  •  不知归路
    2020-11-21 14:02

    SELECT * FROM users u where rowid = (select max(rowid) from users u1 where
    u.email=u1.email);
    

提交回复
热议问题