在我的wp_posts
表中,我有一个名为post_content
的列。我想在此列中搜索<!--nextpage-->
的所有实例,并删除它是否存在。
例如,如果在post_content
行中找到以下内容:
hello<!--nextpage-->world lorem
然后将其剥离为:
helloworld lorem
我可以运行什么SQL查询?
答案 0 :(得分:4)
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-->%'