含有‘&’的字符串在oracle无法插入和更新

今天qq技术群里有人提了一个问题:
update t_shop set s_map_address="http://searchbox.mapbar.com/publish/template/template1010/index.jsp?CID=jimsang&tid=tid1010&nid=MAPBZISEJECICISRSECAX&width=225&height=192&infopoi=1"
语句没办法执行,在网上搜了一下原来是‘&’惹的祸,他在oracle中是个转义字符,所以需要把他替换成chr(38)就行了。或者直接用‘&&’代替‘&’,这是我的测试语句:
update user_advice_record_info  w set w.disposeresult='http://searchbox.mapbar.com/publish/template/template1010/index.jsp?CID=jimsang'||chr(38)||'tid=tid1010'||chr(38)||'nid=MAPBZISEJECICISRSECAX'||chr(38)||'width=225'||chr(38)||'height=192'||chr(38)||'infopoi=1'

update user_advice_record_info  w set w.disposeresult='http://searchbox.mapbar.com/publish/template/template1010/index.jsp?CID=jimsang&&tid=tid1010&&nid=MAPBZISEJECICISRSECAX&&width=225&&height=192&&infopoi=1'

你可能感兴趣的:(oracle,jsp,qq)