Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你能帮我匹配特殊字符ò , í , è,比如 mysql preg_rlike
ò , í , è
select first_name from authors where preg_rlike('/Jòse/i',authors.first_name);
即使数据库有值,它也不会检索数据。
我们可以处理这个,LIKE但我有很多喜欢Jòse|Jose|James
LIKE
Jòse|Jose|James
请让我知道我们该如何处理。
感谢您的意见
我通过制作表格或只是该字段是 UT8 编码或在查询中使用 CONVERT(field_name USING utf8) 得到了这个问题的答案