sql – Postgres替换字符串中的字符
发布时间:2020-12-12 08:41:42 所属栏目:MsSql教程 来源:网络整理
导读:我有文字列,我需要更改字符! 例如 ay—-需要成为一天 rag—-需要拖动 所以我需要用字符D替换 . 我尝试下一步,但我得到错误:无效的正则表达式:量词操作数无效 update tableT pp set descript=(select regexp_replace(descript,'?','D') FROM tableT kk wher
我有文字列,我需要更改字符!
例如 > ay—->需要成为一天 所以我需要用字符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) 为什么不使用替换? (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |