I have several tables with people's first names and last names in them, one row for each person, no duplicates. I need to match the names in one table to the names in the other tables, but sometimes the names are misspelled, etc.
Here is an example:
Table1,Row1,FirstName = "AnnMarie"
Table1,Row1,LastName = "Smith"
and
Table2,Row5,FirstName = "Anne Marie"
Table2,Row5,LastName = "Smith"
Is there a way for me to match up the two rows, using the LIKE keyword, or something better?
Here is an example:
Table1,Row1,FirstName = "AnnMarie"
Table1,Row1,LastName = "Smith"
and
Table2,Row5,FirstName = "Anne Marie"
Table2,Row5,LastName = "Smith"
Is there a way for me to match up the two rows, using the LIKE keyword, or something better?