我有文字列,我需要更改字符!
例如
例如
> ay—->需要成为一天
> rag—->需要拖动
所以我需要用字符D替换 .
我尝试下一步,但我得到错误:无效的正则表达式:量词操作数无效
update tableT pp set descript=(select regexp_replace(descript,'�','D') FROM tableT kk where pp.id=kk.id) ;
解决方法
update tableT pp set descript = (select replace(descript,'D') from tableT where id = pp.id)
为什么不使用替换?