My current SQL query is:
Select
A.CFCIF#, B.CIFNO, B.SNAME, A.CFSNME
From dbo.tbl_CIF_Master A
Left Join dbo.tbl_Loan_Master B
On A.CFCIF# = B.CIFNO
Where
B.[STATUS] not in (2,8)
--and CONTAINS (A.CFSNME or FORMSOF (THESAURUS, B.SNAME)) --doesn't work.
I'm not an admin so I can't design thesaurus mappings
and B.SNAME LIKE '%' + A.CFSNME + '%' -- works but no results which can't
be accurate
This runs fine but finds no differences as I noted using LIKE. The line using THESAURUS is commented out as I noted... An example of the subtle differences I would find in the two 'name' fields SNAME & CFSNME would be subtly differences like missing a comma before LLC or Robert abbreviated to Rob.