Hi, Please let me know how to find out or display only the duplicate entries in table. Thanks in advance
SELECT field1, field2, field3, count(*) FROM tablename GROUP BY field1, field2, field3 HAVING COUNT(*) > 1