如何用MySQL中的名字中的另一个字母替换字母?

时间:2015-08-10 04:46:14

标签: mysql sql

我在MySQL中有一个名为singers的表。我想用一行中的另一个字母替换一个字母 例如:
我在整行中都有一个名称abcd,因此我希望在整行中使用xyz代替abcd

2 个答案:

答案 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');