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 ');

原文地址:https://www.cnblogs.com/colder/p/11213375.html