Find duplicates
SELECT unique_key, COUNT(unique_key) AS NumOccurrences
FROM table
GROUP BY uprn
HAVING ( COUNT(unique_key) > 1 );
Updated less than a minute ago
SELECT unique_key, COUNT(unique_key) AS NumOccurrences
FROM table
GROUP BY uprn
HAVING ( COUNT(unique_key) > 1 );
Updated less than a minute ago