How to find the count of character mismatch between two values in a SQL Server stored procedure? It's not about the length difference.
For example, there are two values,
- Reference value ='Visual'
- Test value ='Visvolc'
Mismatch = 3 chars (4th, 5th and 7th position)
There is 3 character mismatch based on the position. please help.