I have a problem considering the search of a certain character (w. multiple value) in a MySQL database. When I query a string in a database, lets say, the string '%bice%', is there a possibility to somehow order the MySQL to realise that f. e. the character c could have multiple values, like č or Ć ? Note that I'd like to avoid sending "... (row LIKE %bice%) or (row LIKE %biče%) or (row LIKE %biĆe%) ..." alike queries, as if the string is huge with many non-english characters, it would lead to numerous combinations.
Basically, if I search for a 'bice', I'd like to get 'bi?e' or 'bi?e' as results as well.
Any ideas? Thank you in advance.