/ Published in: MySQL
URL: http://www.tutorialspoint.com/mysql/mysql-handling-duplicates.htm
Expand |
Embed | Plain Text
SELECT count(one) as rept, one FROM data8 GROUP BY one HAVING rept > 1
You need to login to post a comment.
kaartz on 11/08/10
2 people have marked this snippet as a favorite
URL: http://www.tutorialspoint.com/mysql/mysql-handling-duplicates.htm
SELECT count(one) as rept, one FROM data8 GROUP BY one HAVING rept > 1
You need to login to post a comment.