I would like do a select query using LIKE but MySQL replies with results having different characters, e.g.
select name FROM cities WHERE city LIKE "Muni%"
Results:
Múnic
Munic
Munich
Múnich
How do I eliminate results like Múnic and Múnich, so that just the entered characters are being matched?