gpt4 book ai didi

MySQL:删除整个数据库中的字符

转载 作者:太空宇宙 更新时间:2023-11-03 12:12:54 26 4
gpt4 key购买 nike

我的数据库中有一个名为higlights 的字段。在那些字段中,我存储了产品的亮点。现在 highlights 字段看起来像这样:

"some higlight"; "another highlight"; "blabla"; "etc"

我想将我数据库中的所有这些记录转换为:

some higlight; another highlight; blabla; etc

最有效的方法是什么?

最佳答案

如果你只是想删除双引号,那么你会这样做:

update tableName
set highlights = replace(highlights, '"', '')
where highlights like '%"%';

关于MySQL:删除整个数据库中的字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23470811/

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