MySQL更新与短语?

时间:2016-05-17 06:01:50

标签: mysql wordpress replace

我正在使用WordPress/MySQ L用于博客系统。我想将所有短语"Advanced Test System"更改为"Best Test System",因此我在WordPress数据库(MySQL数据库)上使用以下语句:

UPDATE wp_posts SET post_content=(REPLACE (post_content, 'Advanced Test System','Best Test System'));

这是对的吗?替换是否适用于短语,即使它包含空格?

2 个答案:

答案 0 :(得分:0)

你可以这样做

UPDATE wp_posts SET post_content = replace(post_content, 'Advanced Test System', 'Best Test System');

答案 1 :(得分:0)

试试此代码

UPDATE wp_posts SET post_content = replace(post_content, 'Advanced Test System', 'Best Test System');