WordPress批量更新数据库内容的sql语句
2021-04-25
将http://xxx.com全部替换成https://xxx.com,在数据库控制台输入:
UPDATE test_posts SET guid = replace(guid, 'http://xxx.com','https://xxx.com');
- test_posts 是数据表名称,自定义前缀test_。
- guid是数据表中的字段。
将http://xxx.com全部替换成https://xxx.com,在数据库控制台输入:
UPDATE test_posts SET guid = replace(guid, 'http://xxx.com','https://xxx.com');