Hi I have a table
that looks like below:
First Name | Last Name | Employee number
James Smith 1234
James Tim Smith 1234
Jim Baker 1234
Jen King 5678
Jenny King 5678
I want to return the employees where the same employee number is assigned to different people based on first name and last name combinations. I basically want to return the records that map to employee number 1234, as Jim Barker and James Smith are definetely not the same people however we can assume that Jen King and Jenny King are the same people.
Thanks