I have a table with city names in various languages. These names often contain characters such as é
, ü
etc. I am building a search function so that a user can search for a name, but I would like this to ignore all special characters, and treat them as letters from the English 26-letter alphabet instead.
For instance, a query for the name munchen
should be matched with the value München
. The query converts both sides of the comparison to case-insensitive 26-letter alphabet, and then performs the comparison.
Is there a straightforward way to achieve this?