oracle的insert的时候&符号如何插入(转义)

Posted The first wings

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle的insert的时候&符号如何插入(转义)相关的知识,希望对你有一定的参考价值。

chr(38)替换&


insert   into   table   values( ‘http://localhost:8080/index.action?username=138&type=1 ‘);

insert   into   table   values( ‘http://localhost:8080/index.action?username=138 ‘||chr(38)|| ‘type=1 ‘);


以上是关于oracle的insert的时候&符号如何插入(转义)的主要内容,如果未能解决你的问题,请参考以下文章