Hi guys,
I am trying to join two employer tables with similar data, but no primary key exists between them. Employer table A contains the employer id. Employer Table B does not have the employer id. I want to merge the two tables so I can update employer table B with the employer ids.
Since I don't have a primary key to join the tables, I can only compare and join their employer names. The problem is most names are similar between the two, but not exact.
For example:
Table A - ASHLEY COUNTY CONSERVATION DIST
Table b - ASHLEY CO. CONSERVATION DISTRICT
There is no pattern to which record names are abbreviated or not.
I know I can use wildcards and the LIKE command, but that would only work for a single record. I need to match up over 1,000 records. I really don't see a way to do this. Can anyone help?
I am trying to join two employer tables with similar data, but no primary key exists between them. Employer table A contains the employer id. Employer Table B does not have the employer id. I want to merge the two tables so I can update employer table B with the employer ids.
Since I don't have a primary key to join the tables, I can only compare and join their employer names. The problem is most names are similar between the two, but not exact.
For example:
Table A - ASHLEY COUNTY CONSERVATION DIST
Table b - ASHLEY CO. CONSERVATION DISTRICT
There is no pattern to which record names are abbreviated or not.
I know I can use wildcards and the LIKE command, but that would only work for a single record. I need to match up over 1,000 records. I really don't see a way to do this. Can anyone help?