Is there a simple way to verify in an SQL query whether two string values from different columns share a term?
For example:
Str1 = "little brown fox" Str2 = "big brown bear" Return_Value = 1
Str1 = "Sun is shinning" Str2 = "Its raining" Return_Value = 0
This probabbly isn’t the best user function but this might help you down the path of what you need.