I have a table (SQL Sever
) which references paths (UNC
or otherwise), but now the path is going to change.
In the path column, I have many records and I need to change just a portion of the path, but not the entire path. And I need to change the same string to the new one, in every record.
How can I do this with a simple update
?
UPDATE Syntax Notice the WHERE clause in the UPDATE statement. The WHERE clause specifies which record(s) that should be updated. If you omit the WHERE clause, all records in the table will be updated!
It's this easy:
update my_table set path = replace(path, 'oldstring', 'newstring')
UPDATE [table] SET [column] = REPLACE([column], '/foo/', '/bar/')
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With