I'm running: MySQL Software version: 5.5.25 - Source distribution
I have a table like this:
Region | City
-----------------
quebec | montreal
_________________
quebec | montréal
The cities are written "montreal" and "montréal" with a french accent.
When I do 'select distinct City from table where Region="quebec"' it returns only
montreal
How do I get it to return both versions of montreal (with and without é)?
montreal
montréal
In other words how do I get sql to return both french and english spelling of the same word?