1. 程式人生 > >Oracle中replace函式的使用

Oracle中replace函式的使用

例:

select filefullname from sys_frmattachmentdb

查詢的結果為:

e:\GengBaoFile\TYGW\《歷城區專案立項審批流程》.1079\\3186.通用流程專案資料.jpg

需求:

要將結果中的“歷城區”修改為"北京區"。

操作:

使用的函式為replace()

含義為:替換字串

replace(原欄位,“原欄位舊內容“,“原欄位新內容“,)

語句:

update sys_frmattachmentdb  set filefullname = replace(filefullname,'歷城區,'北京區)