You would use a query like this to find duplicates of 2 columns:
SELECT col1, col2, COUNT(*) as `Duplicate_Count`, GROUP_CONCAT(PrimaryKeyCol) as `IDs`
FROM table_name
GROUP BY col1, col2
HAVING COUNT(*) > 1
This would give you a list of duplicates, the number of duplicates, and the IDs of the duplicate records.