Chcete-li nahradit pevný řetězec, použijte jednoduchý replace()
funkce.
Chcete-li nahradit dynamický řetězec, můžete použít regexp_replace()
takhle:
UPDATE
YourTable
SET
TheColumn = regexp_replace(
TheColumn, 'http://[^:\s]+:9999(\S+)', 'http://example2.com\1', 'g'
)