刚设法在 SQL 2008 R2 上安装WordPress。如何在<{1}}表dbo.wp_post
列中查找和替换字符串(网址)?
寻找用post_content
http://localhost/
的方法
任何建议都非常感谢。
答案 0 :(得分:1)
使用REPLACE
:
UPDATE dbo.wp_post
SET post_content =
REPLACE(post_content, 'http://localhost/', 'http://somedomain.com');
WHERE ... --predicatehere