第一句代码是用于搜索文章表里是否存在要替换的内容
select * from dede_addonarticle where body like '%4000250510%'; 搜索
下面的代码1表示要被替换的内容,2表示用于替换的新内容
update `dede_addonarticle` set body=replace(body,'1','2');
update `dede_archives` set title=replace(title,'1','2');
update `dede_archives` set description=replace(description,'1','2');
update `dede_archives` set keywords=replace(keywords,'1','2');
替换的位置在系统---SQL命令行工具,