is it possible to search 'ware' and also find 'wáre' with REGEXP? If I
do following SELECT, it finds only "ware".
SELECT column from table WHERE column REGEXP '[[:<:]]ware[[:>:]]'
Thanks!
Best Regards, Michael
You need to search Google for
mysql accent insensitive searching
I found this:
http://forums.mysql.com/read.php?103,97131,97131#msg-97131
that one works with LIKE, I need REGEXP, because it can search with
word boundaries. With LIKE I must make huge query with ca. 100 OR's
(thrue several columns)
I found only that REGEXP is not multi-byte safe and so it is not
possible to do my search with it. Because almost all my tables have
accented chars, REGEXP is useless for me.
Anyway, thanks for your reply!