我在MySQL中有一个名为singers
的表。我想用一行中的另一个字母替换一个字母
例如:
我在整行中都有一个名称abcd
,因此我希望在整行中使用xyz
代替abcd
。
答案 0 :(得分:0)
https://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_replace
UPDATE singers SET `your_column` = REPLACE(`your_column`, 'abcd', 'xyz')
答案 1 :(得分:0)
How to find and replace text in mysql
update TABLE_NAME set FIELD_NAME = replace(FIELD_NAME, 'find this string', 'replace found string with this string');