mysql 替换字符串

 把guid字段中所有记录的abc还成123

UPDATE `wp_posts` SET `guid` = replace(guid, 'abc', '123') WHERE 1;

相关文章: