Skip to content
Advertisement

MySql – Way to update portion of a string?

I’m looking for a way to update just a portion of a string via MySQL query.

For example, if I have 10 records all containing ‘string’ as part of the field value (i.e., ‘something/string’, ‘something/stringlookhere’, ‘something/string/etcetera’, is there a way to change ‘string’ to ‘anothervalue’ for each row via one query, so that the result is ‘something/anothervalue’, ‘something/anothervaluelookhere’, ‘something/string/etcetera’, is there a way to change ‘anothervalue’

Advertisement

Answer

I think this should work:

UPDATE table
SET field = REPLACE(field, 'string', 'anothervalue')
WHERE field LIKE '%string%';
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement