1UPDATE table
2SET field = REPLACE(field, 'string', 'anothervalue')
3WHERE field LIKE '%string%';
1SELECT Country, REPLACE(Country, 'States', 'Kingdom')
2FROM Persons;
3
4UPDATE tableName
5SET Country = REPLACE(Country, 'States', 'Kingdom')
6
7-- if Country = 'United States'
8-- After replace = 'United Kingdom'