gpt4 book ai didi

mysql - 我如何删除 mysql 数据库的许多记录中的一部分文本?

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

我想知道如何删除所有以“MyString”开头并以“AnotherString”结尾的字符串?这是因为在(字符串)里面有一个数字每次都会改变。我有大约 30 个字符串要删除每条记录(所有不同但开始和结束始终相同)和 1000 条记录。有执行此操作的查询吗?

我看到了这个:

UPDATE wp_posts
SET post_content = REPLACE(post_content, "mystring", "another_string")

但如果字符串相同,则此方法有效。 (我想在其中删除的字符串有一个每次都改变的数字。

存在执行此操作的查询:

delete or replace with ""  all string ( inside my code ) that start with "xxxxx" and finish with "yyyy" ?

这是我必须删除的两个字符串(示例):(top: 和 left: 总是不同的!)

<span style="border-radius: 2px; text-indent: 20px; width: auto; padding: 0px 4px 0px 0px; text-align: center; font: bold 11px/20px 'Helvetica Neue',Helvetica,sans-serif; color: #ffffff; background: #bd081c no-repeat scroll 3px 50% / 14px 14px; position: absolute; opacity: 1; z-index: 8675309; display: none; cursor: pointer; top: 844px; left: 275px;">Salva</span>

<span style="border-radius: 2px; text-indent: 20px; width: auto; padding: 0px 4px 0px 0px; text-align: center; font: bold 11px/20px 'Helvetica Neue',Helvetica,sans-serif; color: #ffffff; background: #bd081c no-repeat scroll 3px 50% / 14px 14px; position: absolute; opacity: 1; z-index: 8675309; display: none; cursor: pointer; top: 766px; left: 350px;">Salva</span>

当我在我的代码中找到以 <span style 开头的字符串时,这是可能的 并以 </span> 结束删除它?

最佳答案

UPDATE wp_posts
SET post_content = CONCAT(SUBSTRING(post_content, LEN('string') + 1), 'string')
WHERE post_content LIKE 'string%';

关于mysql - 我如何删除 mysql 数据库的许多记录中的一部分文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50507745/

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