Tôi nghĩ điều này sẽ hoạt động:
UPDATE table
SET field = REPLACE(field, 'string', 'anothervalue')
WHERE field LIKE '%string%';
Tôi nghĩ điều này sẽ hoạt động:
UPDATE table
SET field = REPLACE(field, 'string', 'anothervalue')
WHERE field LIKE '%string%';