启用 NO_BACKSLASH_ESCAPES 选项时如何转义文字百分号?
我的公司以 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你需要转义
对于无论 NO_BACKSLASH_ESCAPES 模式如何都可以工作的版本,你可以使用不同的字符,例如管道:
you need escape
For a version that works regardless of NO_BACKSLASH_ESCAPES mode, you can use a different character, like pipe: