如何避免Oracle SQL Developer中的变量替换

2022-02-20 00:00:00 oracle oracle-sqldeveloper

当我尝试在Oracle SQL Developer 2.1中执行此语句时,弹出"输入替代变量"对话框,要求多巴哥的替换值,

update t set country = 'Trinidad and Tobago' where country = 'trinidad & tobago';

我如何才能避免这种情况,而不诉诸chr(38)u'trinidad 026 tobago',这两者都模糊了语句的目的?


解决方案

在查询前调用此函数:

set define off;

或者,hacky:

update t set country = 'Trinidad and Tobago' where country = 'trinidad &' || ' tobago';

发件人Tuning SQL*Plus:

SET DEFINE OFF禁用要替换的命令的解析 替换变量及其值。

相关文章