Update column data in place with Postgres
From the collection
Code Snippets
From the collection
Code Snippets
UPDATE your_table SET your_column = REGEXP_REPLACE(your_column, '\/path\/to\/resource', '/new/path', 'g') WHERE your_column ~ '\/path\/to\/resource';