Oracle修改字串中指定字元

2021-10-22 06:45:31 字數 710 閱讀 5688

如將、修改為回車符(即回車換行)如下

--修改zj_sjd表中jyyj欄位中 》、 為 》chr(1314)

update zj_sjd set jyyj =

replace

(jyyj,

'》、'

,'》chr(1314)'

)where jyyj like

'%》、%'

;--修改zj_sjd表中jyyj欄位中 》chr(1314) 為 chr(13)

update zj_sjd set jyyj =

replace

(jyyj,

'chr(1314)'

,chr(13)

)where jyyj like

'%chr(1314)%'

;chr(13)

--回車符

chr(10)

--換行符

--replace函式說明

replace

(欄位名,

'指定字元'

,'替換字元'

)--update更新前可使用select檢視效果

select

replace

(jyyj,

'》、'

,'》chr(1314)'

)from zj_sjd where jyyj like

'%》、%'

;

Oracle實現獲得字串中指定字元個數的方法

select length csrq length replace csrq,from dual select t.to number substr r.pointstr,instr r.pointstr,1,1 1,length r.pointstr 1000 as result from res...

python 去除字串中指定字元

python中的strip 可以去除頭尾指定字元 ss 我還有更多python的學習資料,無法一一放出,n qq裙688244617,免費自取 n n n print ss.strip n 結果 1 我還有更多python的學習資料,無法一一放出,2 qq裙688244617,免費自取 可以看到只能...

oracle求字段中指定字串出現個數

下面結果集中result欄位,分別求出 不考核 部分報送 未報送 出現的次數 sql實現 select length replace wm concat result 不考核 不考核 length wm concat result bkh,length replace wm concat resul...