MySQL查询将在表中的某个特定字段中进行文本搜索和替换?
即搜索foo
并替换为具有bar
值的字段的记录hello foo
变为hello bar
.
更改table_name
并field
匹配您的表名称和相关字段:
UPDATE table_name SET field = REPLACE(field, 'foo', 'bar') WHERE INSTR(field, 'foo') > 0;
REPLACE(字符串函数)
INSTR(字符串函数)
UPDATE table_name SET field = replace(field, 'string-to-find', 'string-that-will-replace-it');
UPDATE table SET field = replace(field, text_needs_to_be_replaced, text_required);
例如,如果我想用Mark替换所有出现的John,我会在下面使用,
UPDATE student SET student_name = replace(student_name, 'John', 'Mark');
如果你想根据另一个字段的值进行搜索和替换,你可以做一个CONCAT:
update table_name set `field_name` = replace(`field_name`,'YOUR_OLD_STRING',CONCAT('NEW_STRING',`OTHER_FIELD_VALUE`,'AFTER_IF_NEEDED'));
只是把这个放在这里,以便其他人立即找到它.