Mysql 的 LIKE 对希伯来语和反斜杠表现不佳,为什么?

发布于 2024-08-07 06:18:55 字数 351 浏览 3 评论 0原文

我有以下 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白首有我共你 2024-08-14 06:18:55

正如 @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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文