Mysql 的 LIKE 对希伯来语和反斜杠表现不佳,为什么?
我有以下 SQL 查询,它返回正确的结果:
SELECT *
FROM `tags`
WHERE tag_name = 'בית\\\"ר-ירושלים'
如果我将其更改为
SELECT *
FROM `tags`
WHERE tag_name LIKE 'בית\\\"ר-ירושלים'
或 则
SELECT *
FROM `tags`
WHERE tag_name LIKE 'בית\\\"ר-ירושלים%'
它不起作用。如果我从查询中删除所有反斜杠和“,它将起作用。
I have the following SQL query which returns the correct results:
SELECT *
FROM `tags`
WHERE tag_name = 'בית\\\"ר-ירושלים'
If I change it to
SELECT *
FROM `tags`
WHERE tag_name LIKE 'בית\\\"ר-ירושלים'
or to
SELECT *
FROM `tags`
WHERE tag_name LIKE 'בית\\\"ר-ירושלים%'
It doesn't work. It will work if I remove all the backslashes and " from the query.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如 @halocursed 所说 - 这是 MySql 中的一个错误。
bugs.mysql.com/bug.php?id=46659
As @halocursed said - this is a bug in MySql.
bugs.mysql.com/bug.php?id=46659