Generate SQL command to replace a string in your database like this:
UPDATE [Table]
SET [Column] = REPLACE([Column], '[What to replace]', '[Replace with]')
WHERE [Column] LIKE '%[What to replace]%'
Because i allways stuck with it... ;-)
https://heikomamerow.github.io/SQL-String-Replace-Helper/
More Bling