有时可能需要批量替换数据库中某个字段的的部分内容,可以用如下的操作:
update test set Content = REPLACE(Content,'abc001','test') where IDX = 2 AND Content REGEXP 'http://static.abc001.com/123.jpg';
本文转自 gutaotao1989 51CTO博客,原文链接:http://blog.51cto.com/taoyouth/1747520
有时可能需要批量替换数据库中某个字段的的部分内容,可以用如下的操作:
update test set Content = REPLACE(Content,'abc001','test') where IDX = 2 AND Content REGEXP 'http://static.abc001.com/123.jpg';
本文转自 gutaotao1989 51CTO博客,原文链接:http://blog.51cto.com/taoyouth/1747520