本文介绍了PostgreSQL-替换文本字段中字符串的所有实例的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在postgresql中,如何替换数据库列中字符串的所有实例?
In postgresql, how do I replace all instances of a string within a database column?
例如,我想用dog
替换cat
的所有实例.
Say I want to replace all instances of cat
with dog
, for example.
做到这一点的最佳方法是什么?
What's the best way to do this?
推荐答案
您要使用postgresql的替换功能:
You want to use postgresql's replace function:
replace(string text, from text, to text)
例如:
UPDATE <table> SET <field> = replace(<field>, 'cat', 'dog')
但是请注意,这将是字符串到字符串的替换,因此'category'将变为'dogegory'. regexp_replace函数可以帮助您为要替换的内容定义更严格的匹配模式.
Be aware, though, that this will be a string-to-string replacement, so 'category' will become 'dogegory'. the regexp_replace function may help you define a stricter match pattern for what you want to replace.
这篇关于PostgreSQL-替换文本字段中字符串的所有实例的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!