gpt4 book ai didi

mySQL 替换所有字符串,无论字段名称如何?

转载 作者:行者123 更新时间:2023-11-29 06:56:15 34 4
gpt4 key购买 nike

我有这个查询,但我想更改找到的每个 field_name 中的字符串,而不是手动更改它。我该怎么做?

update TABLE_NAME 
set FIELD_NAME = replace(FIELD_NAME, ‘find this string’, ‘replace found string with this string’);

最佳答案

然后您必须指定所有字段名。示例

UPDATE tableName
SET field1 = REPLACE(field1, 'oldstring', 'newstring'),
field2 = REPLACE(field2, 'oldstring', 'newstring'),
field3 = REPLACE(field3, 'oldstring', 'newstring'),
fieldN = REPLACE(fieldN, 'oldstring', 'newstring')

关于mySQL 替换所有字符串,无论字段名称如何?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12574903/

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