gpt4 book ai didi

MySql - 更新字符串部分的方法?

转载 作者:IT老高 更新时间:2023-10-28 12:51:19 26 4
gpt4 key购买 nike

我正在寻找一种通过 MySQL 查询仅更新部分字符串的方法。

例如,如果我有 10 条记录都包含“字符串”作为字段值的一部分(即“某事/字符串”、“某事/字符串外观”、“某事/字符串/等等”,有没有办法通过一个查询将每一行的'string'更改为'anothervalue',以便结果是'something/anothervalue'、'something/anothervaluelookhere'、'something/string/etcetera',有没有办法改变'anothervalue'

最佳答案

我认为这应该可行:

UPDATE table
SET field = REPLACE(field, 'string', 'anothervalue')
WHERE field LIKE '%string%';

关于MySql - 更新字符串部分的方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1876762/

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