LIKE search. For instance
WHERE myfield LIKE 'a%'will also find strings that start with č. Instead you can use a regular expression search:
WHERE myfield REGEXP '^a'See the official MySQL regular expressions documentation. Note that word boundary regexes are different in MySQL:
WHERE myfield REGEXP '[[:<:]]word[[:>:]]'