Looking for some creative minds.
I have about 70,000 records with each containing a Cust_ID field which should be unique for every customer. Unfortunately, some customers have been assigned an identical ID to another customer. Given that the data is correct, in the image below, I can see that there is a record with Cust_ID 12345 that has a different birth date from the other records of the same Cust_ID. This tells me that I have 2 customers with the Cust_ID of 12345.
What would be an efficient way to identify every Cust_ID that has multiple Birthdates (indicating multiple customers with the same Cust_ID)? It is correct that I would have multiple records of the identical customer.
(I did write a procedure that did a Group, then a comparison of birthdate values but with 70,000 records, it is probably not the right way to be doing this.)
Ideas?
