If I search for "José", the result is 0. If I search for "Josè", and "Jôse" will also fail.
select name from TblName where name = 'Jose' or name = 'Josè' or name = 'Jôse'
I know a replacement ?: where name like 'Jos?' or name like 'J?se'But it is very uncontrollable and who knows if there is any special form of 's'?
I want to find "Jose" and get all variants of it with all possible special characters on all single characters; how to do it?
source
share