I saved some German characters on the database by entity (eg. föo => föo
).
Now I have a query that search for a match just using LIKE %search_word%
. The search_word
will probably be an input containing special German characters. Can you suggest of the most efficient way to compare my search_word
to the one stored in the database?
Huge thanks.