If I want to search all data with the string léon in the name field, I use a query like this:
SELECT * FROM `my_table` WHERE `name` REGEXP 'léon'
This request is OK.
Now, I need to retrieve all rows with the string léon or leon or lèon, so I tried:
SELECT * FROM `my_table` WHERE `name` REGEXP 'l[éeè]on'
This query doesn't work... I have no error, but no result. Do you have any ideas?