替换标题
UPDATE wp_posts SET post_title = REPLACE( post_title,'AAA','BBB');替换内容
UPDATE wp_posts SET post_content = REPLACE( post_content,'AAAA','BBBB');替换内容+ID区间
UPDATE wp_posts SET post_content = REPLACE( post_content,'AAAA','BBBB') where id > 100 and id < 500;