mysql替换字段里数据内容部分字符串

mysql替换表的字段里面内容,如例子:

mysql> select host,user from user  where user=‘testuser‘; 
+-----------------------+----------+
| host                  | user     |
+-----------------------+----------+
| localhost.localdomain | testuser | 
+-----------------------+----------+

update字段host的内容,把"main"改成"slave",用REPLACE

mysql> update user set host=REPLACE(host,‘main‘,‘slave‘) where user=‘testuser‘;       
Query OK, 1 row affected (0.00 sec)
Rows matched: 1  Changed: 1  Warnings: 0

mysql> select host,user from user  where user=‘testuser‘;                             
+------------------------+----------+
| host                   | user     |
+------------------------+----------+
| localhost.localdoslave | testuser | 
+------------------------+----------+

由查询结果到,数据已经更新成功

 

mysql替换字段里数据内容部分字符串

上一篇:NodeJS——大汇总(二)(只需要使用这些东西,就能处理80%以上业务需求,全网最全node解决方案,吐血整理)


下一篇:使用WebSocket与具名管道支持远程输入输出