scriptscribe
MIS
Hi,
I've need to parse out data to identify duplicate entries in a database that share a License#, but have slightly different names. I want the results to display on a single line for each ID#.
My data looks like this:
I need the results to look like this:
I'm usually pretty good with queries, but am lost on how to do this without getting a slew of matches, since each row is unique.
Any help would be greatly appreciated.
Mike
I've need to parse out data to identify duplicate entries in a database that share a License#, but have slightly different names. I want the results to display on a single line for each ID#.
My data looks like this:
Code:
Name Primary Key ID
Smith,John 1 12345
Smith,Jon 2 12345
Smith,Johnny 3 12345
I need the results to look like this:
Code:
Smith,John 1 Smith,Jon 2 Smith,Johnny 3
I'm usually pretty good with queries, but am lost on how to do this without getting a slew of matches, since each row is unique.
Any help would be greatly appreciated.
Mike