How To Find Duplicate Records In MySQL

Author: , August 8th, 2012

SELECT * FROM yourTable GROUP BY yourField HAVING count(yourField) > 1;