Answers for "update one column string value in mysql"

SQL
2

update part of a string in mysql

UPDATE table
SET field = REPLACE(field, 'string', 'anothervalue')
WHERE field LIKE '%string%';
Posted by: Guest on April-25-2021

Code answers related to "update one column string value in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language