I am having trouble joining to tables together, the 2 columns have similar data but not exactly the same data.
Example:
Table 1: Column 1 = "Expect rain for todays weather" Table 2: Column 2 = "Expect rain for todays weather and overcast clouds"
I have tried using the below to join but it is not 100% accurate:
... FROM [Table1] as [one] LEFT JOIN[Table2] as [two] ON [one].[column1] LIKE '%' + [two].[column2] + '%'
Would fuzzy matching be the best way to get the most accurate matches? Or are there other methods of joining Tables with columns that have similar but not exact data?
Any assistance and advise will be greatly appreciated!