...the ID. I want to now attach the ID to these records, can someone give me some guidance on this.
So far I have used (simplified):
SELECT COUNT(*) FORENAME,SURNAME,ADD1, ADD2
FROM CUSTOMER
GROUP BY FORENAME,SURNAME,ADD1, ADD2
HAVING COUNT(*) > 1
The above returns the duplicate cases. I now...