I have this SQL query:
SELECT `firstname` FROM `table_xy` WHERE BINARY `firstname` LIKE '%ö%'
The problem with that is that it also finds items with o
instead of ö
such as
Motor
Völling
Hoeher
What do I have to change?
I have this SQL query:
SELECT `firstname` FROM `table_xy` WHERE BINARY `firstname` LIKE '%ö%'
The problem with that is that it also finds items with o
instead of ö
such as
Motor
Völling
Hoeher
What do I have to change?