sql 用于更改网站域的SQL查询

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql 用于更改网站域的SQL查询相关的知识,希望对你有一定的参考价值。

UPDATE wp_options SET option_value = REPLACE(option_value, 'http://test.rudrastyh.com', 'https://rudrastyh.com') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET post_content = REPLACE (post_content, 'http://test.rudrastyh.com', 'https://rudrastyh.com');
UPDATE wp_postmeta SET meta_value = REPLACE (meta_value, 'http://test.rudrastyh.com','https://rudrastyh.com');
UPDATE wp_comments SET comment_content = REPLACE (comment_content, 'http://test.rudrastyh.com', 'https://rudrastyh.com');
UPDATE wp_comments SET comment_author_url = REPLACE (comment_author_url, 'http://test.rudrastyh.com','https://rudrastyh.com');
UPDATE wp_posts SET guid = REPLACE (guid, 'http://test.rudrastyh.com', 'https://rudrastyh.com') WHERE post_type = 'attachment';

// https://rudrastyh.com/tools/sql-queries-generator

以上是关于sql 用于更改网站域的SQL查询的主要内容,如果未能解决你的问题,请参考以下文章

sql 用于更改wordpress链接的SQL查询

Oracle 12c文档,用于SQL的更改/新功能

sql SFMC - 电子邮件域的SQL查询数据扩展

用于搜索具有无限个位域的表的 SQL 设计方法

SQL查询其中日期=今天减去7天

用于从列中删除超链接的 SQL 查询