earn 发表于 2021-12-28 09:25

sql批量替换

修改论坛标题:
UPDATE pre_forum_thread SET subject=REPLACE(subject,'替换前','替换后');


修改论坛内容:
UPDATE pre_forum_post SET message=REPLACE(message,'替换前','替换后')



修改文章内容:
UPDATE pre_portal_article_content SET content=REPLACE(content,'替换前','替换后');
页: [1]
查看完整版本: sql批量替换