mysql replace regexp
时间:2008-03-17 来源:wzabing
UPDATE tablename SET fieldname = REPLACE( fieldname, 'test', 'abc' )
WHERE fieldname REGEXP "www.test.com";
条件: 字段名为fieldname中含有www.test.com的记录
作用: 字段名为fieldname的值,"test"被替换成"abc"
相关阅读 更多 +