写一个sql的更新语句,批量把该数据表中的“image_file ”字段下的所有“jpg||”改为“jpg”,其他值不变。不知道怎么写,试了好几次都不成功,请高手帮忙指点,谢谢您。终于找到方法了,呵呵~,感谢大家的关注,问题已经解决,谢谢大家。update 数据表 set 字段=replace(字段,'jpg||','jpg')这样就可以批量替换掉了。
字符串截取Oracleselect substr('http://www.baidu.com/a.jpg||',1,length('http://www.baidu.com/a.jpg||')-2)from dual ;update table set image_file = substr(image_file ,1,length(image_file )-2);commit;