Oracle SQL 转义字符(对于 '&')

发布于 2024-07-27 14:55:11 字数 521 浏览 10 评论 0原文

在尝试使用 Oracle SQL Developer 执行 SQL 插入语句时,我保留生成“输入替换值”提示:

insert into agregadores_agregadores 
(
 idagregador,
 nombre,
 url
) 
values 
(
 2,
 'Netvibes',
 'http://www.netvibes.com/subscribe.php?type=rss\&url='
);

我尝试过 使用上面的“\”转义查询中的特殊字符,但我仍然无法避免与号“&”,导致字符串替换。

While attempting to execute SQL insert statements using Oracle SQL Developer I keep generating an "Enter substitution value" prompt:

insert into agregadores_agregadores 
(
 idagregador,
 nombre,
 url
) 
values 
(
 2,
 'Netvibes',
 'http://www.netvibes.com/subscribe.php?type=rss\&url='
);

I've tried escaping the special character in the query using the '\' above but I still can't avoid the ampersand, '&', causing a string substitution.

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

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

发布评论

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

评论(8

琉璃梦幻 2024-08-03 14:55:11

&DEFINE 的默认值,它允许您使用替换变量。 我喜欢使用将其关闭,

SET DEFINE OFF

这样你就不必担心转义或 CHR(38)。

the & is the default value for DEFINE, which allows you to use substitution variables. I like to turn it off using

SET DEFINE OFF

then you won't have to worry about escaping or CHR(38).

心如荒岛 2024-08-03 14:55:11

<代码>|| chr(38) ||

这个解决方案非常完美。

|| chr(38) ||

This solution is perfect.

┊风居住的梦幻卍 2024-08-03 14:55:11

将定义字符设置为 & 以外的字符

SET DEFINE ~
create table blah (x varchar(20));
insert into blah (x) values ('blah&');
select * from blah;

X                    
-------------------- 
blah& 

Set the define character to something other than &

SET DEFINE ~
create table blah (x varchar(20));
insert into blah (x) values ('blah&');
select * from blah;

X                    
-------------------- 
blah& 

风启觞 2024-08-03 14:55:11
insert into AGREGADORES_AGREGADORES (IDAGREGADOR,NOMBRE,URL)
values (2,'Netvibes',
'http://www.netvibes.com/subscribe.php?type=rss' || chr(38) || 'amp;url=');
insert into AGREGADORES_AGREGADORES (IDAGREGADOR,NOMBRE,URL)
values (2,'Netvibes',
'http://www.netvibes.com/subscribe.php?type=rss' || chr(38) || 'amp;url=');
李不 2024-08-03 14:55:11
SELECT 'Free &' || ' Clear' FROM DUAL;
SELECT 'Free &' || ' Clear' FROM DUAL;
落花浅忆 2024-08-03 14:55:11

从双中选择“一个”||“&”||“两个”

select 'one'||'&'||'two' from dual

π浅易 2024-08-03 14:55:11

真正的答案是您需要将转义字符设置为“\”:
SET ESCAPE ON

出现该问题的原因可能是禁用了转义,或者将转义字符设置为“\”以外的字符。 上述语句将启用转义并将其设置为“\”。


之前发布的其他答案都没有真正回答原始问题。 他们都在解决问题,但没有解决问题。

The real answer is you need to set the escape character to '\':
SET ESCAPE ON

The problem may have occurred either because escaping was disabled, or the escape character was set to something other than '\'. The above statement will enable escaping and set it to '\'.


None of the other answers previously posted actually answer the original question. They all work around the problem but don't resolve it.

财迷小姐 2024-08-03 14:55:11

在您的请求之前添加此内容

set define off;

add this before your request

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