Find duplicatesSuggest EditsPL/pgSQLSELECT unique_key, COUNT(unique_key) AS NumOccurrences FROM table GROUP BY uprn HAVING ( COUNT(unique_key) > 1 ); Copy Page