preg_rlike 不匹配 ò 、 í 、 è 等字符

preg_rlike not matching characters like ò , í , è etc

你能帮我把 ò , í , è 这样的特殊字符与 mysql preg_rlike

匹配吗
select first_name from authors where preg_rlike('/Jòse/i',authors.first_name);

即使数据库有值也不会检索数据。

我们可以用 LIKE 来处理这个问题,但我有很多像 Jòse|Jose|James

让我知道我们该如何处理。

感谢您的评论

我通过 table 或只是该字段是 UT8 编码或在查询中使用 CONVERT(field_name USING utf8) 得到了这个问题的答案