在MySQL里运行以下SQL语句可以批量替换页内字符
SQL语句的格式如下:
Update `表名` SET `需要修改的字段名` = replace (`需要修改的字段名`,’被替换的内容’,’替换的内容’) Where `需要修改的字段名` LIKE ‘%被替换的内容%’
比如我要将www.xxxxxxx.net替换成www.xmspace.net,需要运行的SQL语句是:
Update test SET hostname = replace (hostname,’www.xxxxxxx.net’,’www.xmspace.net’) Where hostname LIKE ‘%www.xxxxxxx.net%’;
下面语句就可以查询关键字了
Select `message` FROM `cdb_posts` Where `message` LIKE ‘%关键字%’
下面的是用了REGEXP而已,正则的更灵活更方便
将comment表中的author_url包含www.sohu.com的记录,其中的sohu替换为sina,一个语句搞定~
update comment set author_url=REPLACE(author_url,’sohu’,’sina’) where author_url REGEXP ‘www.sohu.com’;
带IF判断的复杂替换
update comment set url=IF(url REGEXP ‘test.yahoo.com.cn’,REPLACE(url,’www1.sohu.com’,’www.sina.com’),REPLACE(url,’www2.yahoo.com’,’www.sina.com’)) where 1=1;