和 开头的字符串-6ren"> 和 开头的字符串-我有一个名为 op_description 的表, 在此表中有一列名为 description . 我想从以 开头的列中删除 HTML 代码到最后 最佳答案 你能试试下面的吗? UPDATE op_-6ren">
gpt4 book ai didi

mysql - 从表的列中删除以
开头的字符串

转载 作者:行者123 更新时间:2023-11-30 21:56:45 24 4
gpt4 key购买 nike

我有一个名为 op_description 的表, 在此表中有一列名为 description .

我想从以 <div class="xxx"> 开头的列中删除 HTML 代码到最后

最佳答案

你能试试下面的吗?

UPDATE op_description SET description=IF(POSITION('<div class='XXX'>' IN 
description)=0,description,CONCAT(LEFT(description,POSITION('<div
class='XXX'>' IN description)),"</div>"));

示例:

输入:

Test <html> <div class="XXX"> Test</div>

输出:

Test <html> </div>

关于mysql - 从表的列中删除以 <div class ="xxx"> 和 </div> 开头的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44903529/

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