Oracle 中如何插入特殊字符 如'=','&'

SQL> select ascii('&') from dual;

ASCII('&')
----------
        38

insert into ... values(chr(38),...) spa



insert into table1 values('EXP-G'||CHR(38)||'A') ci

獲得結果:EXP-G&A
table

相關文章
相關標籤/搜索