I\'ve got a table with two columns, ID and Value. I want to change a part of some strings in the second column.
ID
Value
Example of Table:
query:
UPDATE tablename SET field_name = REPLACE(field_name , 'oldstring', 'newstring') WHERE field_name LIKE ('oldstring%');