启用 NO_BACKSLASH_ESCAPES 选项时如何转义文字百分号?

发布于 2024-10-18 00:56:52 字数 311 浏览 5 评论 0原文

我的公司以 NO_BACKSLASH_ESCAPES 模式运行 MySQL。在这种模式下,如何在 LIKE 查询中转义文字 %_ ?标准方式是 \%,但在此模式下不起作用。

示例:某列具有以下值:5% 折扣50% 折扣。以下查询适用于标准模式,但不适用于 NO_BACKSLASH_ESCAPES 模式:

SELECT * FROM mytable
WHERE mycol LIKE '5\% off'

My company runs MySQL in NO_BACKSLASH_ESCAPES mode. How can I escape a literal % or _ in a LIKE query in this mode? The standard way is \%, but that doesn't work in this mode.

Example: a column has the following values: 5% off, 50% off. The following query works in standard mode but not in NO_BACKSLASH_ESCAPES mode:

SELECT * FROM mytable
WHERE mycol LIKE '5\% off'

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

野心澎湃 2024-10-25 00:56:52

你需要转义

select * from mytable
where mycol like '5\% off' escape '\';

对于无论 NO_BACKSLASH_ESCAPES 模式如何都可以工作的版本,你可以使用不同的字符,例如管道:

select * from mytable
where mycol like '5|% off' escape '|';

you need escape

select * from mytable
where mycol like '5\% off' escape '\';

For a version that works regardless of NO_BACKSLASH_ESCAPES mode, you can use a different character, like pipe:

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