【发布时间】:2020-03-14 17:26:31
【问题描述】:
我需要对 WordPress (+30.000) 中的所有帖子运行查询
从 * 中删除所有内容 只要:
我正在阅读以下可能性:
UPDATE wp_posts
SET post_content =
REPLACE( post_content, '</iframe>&', '</iframe>' );
SELECT SUBSTRING_INDEX('', '</iframe>', 1) as result;
但不工作。
非常感谢您的帮助。
【问题讨论】: