Do you mean an exact duplicate of all the fields grouped, or individually? Like, having a few overlaps, or an exact duplicate (minus id)?
~Brett
EDIT
Found this in the mySQL manual under SELECT query syntax:
Posted by Johann Eckert on February 11 2004 1:14pm [Delete] [Edit]
To find double entries in a table:
SELECT db1.*
FROM tbl_data db1, tbl_data k2
WHERE db1.id <> db2.id
AND db1.name = db2.name
db1.id must be the PK
db1.name must be the fields that should be verified as double entries.
(I'm not sure wether the code is correct but in my case it works)
Johann