在尝试使用Oracle SQL Developer执行SQL insert语句时,我一直在生成"Enter substitution value“提示:
insert into agregadores_agregadores
(
idagregador,
nombre,
url
)
values
(
2,
'Netvibes',
'http://www.netvibes.com/subscribe.php?type=rss\&url='
);我已经使用上面的'\‘尝试了escaping the special character in the query,但是我仍然无法避免'&',这会导致字符串替换。
发布于 2011-07-01 01:17:28
select 'one'||'&'||'two' from dual
https://stackoverflow.com/questions/1137354
复制相似问题