sql – Postgres替换字符串中的字符

前端之家收集整理的这篇文章主要介绍了sql – Postgres替换字符串中的字符前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有文字列,我需要更改字符!
例如

> 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)

为什么不使用替换?

原文链接:https://www.f2er.com/mssql/75633.html

猜你在找的MsSQL相关文章