SQL 2008上的Wordpress - 查找并替换字符串

时间:2012-09-18 11:52:36

标签: asp.net sql sql-server sql-server-2008

刚设法在 SQL 2008 R2 上安装WordPress。如何在<{1}}表dbo.wp_post列中查找和替换字符串(网址)?

寻找用post_content

替换http://localhost/的方法

任何建议都非常感谢。

1 个答案:

答案 0 :(得分:1)

使用REPLACE

UPDATE dbo.wp_post
SET post_content = 
    REPLACE(post_content, 'http://localhost/', 'http://somedomain.com');
WHERE ... --predicatehere