gpt4 book ai didi

mysql - 在 mysql 表中搜索列中的术语,如果找到则删除术语

转载 作者:行者123 更新时间:2023-11-29 04:38:08 25 4
gpt4 key购买 nike

在我的 wp_posts表,我有一个名为 post_content 的列.我想在此列中搜索 <!--nextpage--> 的所有实例并删除它(如果存在)。

例如,如果在 post_content 中找到以下内容行:

hello<!--nextpage-->world lorem

然后将其剥离为:

helloworld lorem

我可以运行什么 SQL 查询?

最佳答案

UPDATE wp_posts
SET post_content = REPLACE(post_content, '<!--nextpage-->', '')

UPDATE wp_posts
SET post_content = REPLACE(post_content, '<!--nextpage-->', '')
WHERE post_content LIKE '%<!--nextpage-->%'

关于mysql - 在 mysql 表中搜索列中的术语,如果找到则删除术语,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36430372/

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