代码改变世界

oracle的insert的时候&符号如何插入

2019-07-19 15:09  假面Wilson  阅读(1419)  评论(0)    收藏  举报

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