How to replace a string in a SQL Server Table Column

It’s this easy:

update my_table
set path = replace(path, 'oldstring', 'newstring')

Leave a Comment