Hi
I have a project with access
it has 2 non-related tables in access, which should have been related by ID, due to the poor data entry standards I am trying to match records from table 1 to table 2. I hvae tried the simple "Like" operator in SQL but it does not like matching to another table but instead a specified criteria
Example
Table 1
ID: WIG102898
Firstname: John
Lastname: Smith
DOB: 29/05/89
Table 2
ID: 10289856
Firstname: John
Lastname: Smith
DOB: 29/05/89
as you can see ID is very similar and looking for a solution to find records with similar ID, firstname, lastname, and DOB thus removing duplicate records matching the partial ID
I believe I need to compare from 1 table's partial ID to another tables's partial ID, is this possible with SQL or an in-depth VB Script is required?
any help with this would be great and appreciated and a detailed solution
I have a project with access
it has 2 non-related tables in access, which should have been related by ID, due to the poor data entry standards I am trying to match records from table 1 to table 2. I hvae tried the simple "Like" operator in SQL but it does not like matching to another table but instead a specified criteria
Example
Table 1
ID: WIG102898
Firstname: John
Lastname: Smith
DOB: 29/05/89
Table 2
ID: 10289856
Firstname: John
Lastname: Smith
DOB: 29/05/89
as you can see ID is very similar and looking for a solution to find records with similar ID, firstname, lastname, and DOB thus removing duplicate records matching the partial ID
I believe I need to compare from 1 table's partial ID to another tables's partial ID, is this possible with SQL or an in-depth VB Script is required?
any help with this would be great and appreciated and a detailed solution
Comment