/ Published in: SQL
Expand |
Embed | Plain Text
UPDATE TABLE_NAME SET FIELD_NAME = REPLACE(FIELD_NAME, ‘find this string’, ‘REPLACE found string WITH this string’);
You need to login to post a comment.
aleprieto on 10/02/09
1 person have marked this snippet as a favorite
UPDATE TABLE_NAME SET FIELD_NAME = REPLACE(FIELD_NAME, ‘find this string’, ‘REPLACE found string WITH this string’);
You need to login to post a comment.