Example Replace statement using UPDATE function MySQL for “find and replace” in MySQL.
update TABLE_NAME set FIELD_NAME =
REPLACE(FIELD_NAME, ‘find this string’, ‘replace found string with this string’);
Example Replace statement using UPDATE function MySQL for “find and replace” in MySQL.
update TABLE_NAME set FIELD_NAME =
REPLACE(FIELD_NAME, ‘find this string’, ‘replace found string with this string’);
Leave a Reply