Return to Snippet

Revision: 42251
at March 2, 2011 08:05 by nielsenrc


Updated Code
update TABLE_NAME set FIELD_NAME = replace(FIELD_NAME, 'find this string', 'replace found string with this string');

Revision: 42250
at March 2, 2011 06:39 by nielsenrc


Updated Code
update TABLE_NAME set FIELD_NAME = replace(FIELD_NAME, �find this string�, �replace found string with this string�);

Revision: 42249
at March 2, 2011 06:39 by nielsenrc


Initial Code
update TABLE_NAME set FIELD_NAME = replace(FIELD_NAME, ‘find this string’, ‘replace found string with this string’);

Initial URL


Initial Description


Initial Title
MySQL Find and Replace

Initial Tags
mysql

Initial Language
MySQL