gpt4 book ai didi

php - 在 MySQL 中用通配符替换子字符串

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

我正在尝试编写 SQL 更新以将特定 CSS 属性替换为空白,以便将其删除。

让我们看看:

UPDATE table
SET css_string = REPLACE(css_string, "top:calc(50%%ANY_VALUE%%) !important;", " ");

这样我就可以从 CSS 字符串中删除 top:calc(50% - 20px) !important; 属性。

最佳答案

自从我使用 SQL 以来已经有一段时间了,我会尝试一下:

UPDATE table
SET css_string = REPLACE(css_string,"top:calc(50%) !important;"," ");

在更新之前,您可以运行一些查询,例如:

Select css_string, REPLACE(css_string,"top:calc(50%) !important;"," ") as "change to" from table

关于php - 在 MySQL 中用通配符替换子字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47172593/

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