/ Published in: SQL
Searches for duplicate entries in the DataBase table
Expand |
Embed | Plain Text
SELECT column1, COUNT(*) AS Expr1 FROM table1 GROUP BY column1 HAVING (COUNT(*) > 1)
You need to login to post a comment.
