固定文字列を置き換えるには、単純なreplace()
を使用します 機能。
動的文字列を置き換えるには、regexp_replace()
を使用できます このように:
UPDATE
YourTable
SET
TheColumn = regexp_replace(
TheColumn, 'http://[^:\s]+:9999(\S+)', 'http://example2.com\1', 'g'
)
固定文字列を置き換えるには、単純なreplace()
を使用します 機能。
動的文字列を置き換えるには、regexp_replace()
を使用できます このように:
UPDATE
YourTable
SET
TheColumn = regexp_replace(
TheColumn, 'http://[^:\s]+:9999(\S+)', 'http://example2.com\1', 'g'
)