gpt4 book ai didi

sql - 替换字符串中精确单词的多个实例

转载 作者:行者123 更新时间:2023-11-29 12:37:03 25 4
gpt4 key购买 nike

我在表中有一个地址列,我想在其中替换某个单词。但我的查询也替换了部分匹配项:

select replace('the bthe the them', 'the', 'abc')

对于上面的例子,期望的输出应该是:

abc bthe abc them

但是输出是:

abc babc abc abcm

如何解决?

最佳答案

使用

SELECT regexp_replace('the bthe the them', '\ythe\y', 'abc','g')

\y : 表示单词边界

标志 g:用于替换所有出现的地方

关于sql - 替换字符串中精确单词的多个实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31269759/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com