Oracle 特殊字符

发布于 2024-09-17 21:08:55 字数 177 浏览 8 评论 0原文

我有一个查询

select * from table where name in ('52 T&M', '60 T&M');

“&”导致查询需要一个参数。如何限定“&”在查询中进行刺痛,以便查询可以找到带有“&”的字符串他们的性格?

I have a query

select * from table where name in ('52 T&M', '60 T&M');

The "&" is causing the query to expect a parameter. How do I qualify the "&" in the query to sting so that the query can find string with the "&" character in them?

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

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

发布评论

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

评论(3

放赐 2024-09-24 21:08:55

与号(“&”)是 SQLPlus 解释为变量占位符的字符。使用:

SET DEFINE OFF

The ampersand ("&") is a character interpreted by SQLPlus as a variable placeholder. Use:

SET DEFINE OFF
君勿笑 2024-09-24 21:08:55

我通常会按照 omg 的建议使用 set Define off 但也可以这样做:

select *
from table
where name in ('52 T'||Chr(38)||'M', '60 T'||Chr(38)||'M');

I would normally use set define off as suggested by omg but it is also possible to do it like this:

select *
from table
where name in ('52 T'||Chr(38)||'M', '60 T'||Chr(38)||'M');
我的影子我的梦 2024-09-24 21:08:55

我假设你使用sqlplus,所以
之前执行

在设置扫描关闭

I assume you use sqlplus, so
execute before

set scan off

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