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.
冷有人可以解释为什么这会返回 true:
SELECT BINARY 'â' RLIKE '[™]'; SELECT BINARY 'é' RLIKE '[©]';
可以解决什么问题?这是我的一些错误配置吗?
更新:
发现使用(™|©)而不是[™©]作为第一个解决方法
(™|©)
[™©]
从文档中:
警告 REGEXP 和 RLIKE 运算符以字节方式工作,因此它们不是多字节安全的,并且可能会产生多字节字符集的意外结果。