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 REGEXP 运算符不区分大小写。此运算符是否有区分大小写的版本?
使用BINARY关键字,强制REGEXP将字符串匹配为二进制字符串,这是区分大小写的。
BINARY
REGEXP
SELECT 'a' REGEXP 'A', 'a' REGEXP BINARY 'A';
尽管文档中没有明确说明这一点(您可以使用常规字符串执行此操作),但根据我的经验,它可以按预期工作。