gpt4 book ai didi

mysql - 使用 MySQL 从字段中删除字符串

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

我想删除字符串;

<p><span style="color: #008000;">-- Instant Download --</span></p>

从表 ps_product_lang 中的字段description_short,我尝试了以下 SQL 查询

update ps_product_lang set description_short = replace(description_short, ‘<p><span style="color: #008000;">-- Instant Download --</span></p>’, ‘’);

但我收到错误消息

“#1064 - 您的 SQL 语法有错误;请检查与您的 MySQL 服务器版本相对应的手册,了解在“>-- Instant Download --

”附近使用的正确语法,” €~â€)' 在第 1 行"

我相信它的引号和 --< 这可能是问题所在,有人知道如何使查询工作> 谢谢

最佳答案

这是您的代码:

update ps_product_lang
set description_short = replace(description_short, ‘<p><span style="color: #008000;">-- Instant Download --</span></p>’, ‘’);

对我来说唯一明显的问题是 curl 单引号。尝试用常规单引号替换它们:

update ps_product_lang
set description_short = replace(description_short, '<p><span style="color: #008000;">-- Instant Download --</span></p>', '');

关于mysql - 使用 MySQL 从字段中删除字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25788426/

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