gpt4 book ai didi

MYSQL 从表中的列中删除单词

转载 作者:行者123 更新时间:2023-11-29 05:18:01 25 4
gpt4 key购买 nike

我正在使用 wordpress,并希望使用 MYSQL 遍历整个 wp_posts 数据库,以从 slug 中删除“on”一词。

这两行我都试过了;

update wp_posts set post_name = replace(post_name, '%on-%', '') where post_type = "post";

select *, replace(post_name, '%on-%', '') from wp_posts where post_type = "post";

他们不会从“12th-annual-helmets-on-kids-campaign”等内容中删除“on”一词

谢谢大家

最佳答案

尝试

update wp_posts set post_content = replace(post_name, 'on-', '') where post_type = "post";

并省略 %

关于MYSQL 从表中的列中删除单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29945675/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com