Hello
I have two columns with the names OWNER_NAME1 and BIZ_NAME.
The data is messy, so the business name and owner name may not be the same - but might be similar.
I want to select the records where the names in the two columns are similar.
I tried this but it says the expression is invalid.
BIZ_NAME = BIZ_NAME LIKE CONCAT(%OWNER_NAME1%) OR OWNER_NAME1 LIKE CONCAT(%BIZ_NAME%);
Please advise,
Thank you,
A