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