mysql替换字段里的全部或指定内容
发布:smiling 来源: PHP粉丝网 添加日期:2014-10-01 21:06:32 浏览: 评论:0
在mysql中替换字段中内容需要我们结合update与replace进行操作了,下面我来给大家列几个替换字段里内容的实例.
当数据库某个字段的内容出现统一性的错误,需要替换时,我们可以使用mysql语句中的replace来实现替换,把正确的内容替换错误的内容.
update 表 set 字段名 =replace(字段名,’被替换的内容’,'替换的内容’) where 条件,也可以不用加,不用加是全部替换.
列1,代码如下:
- update aaaa set abcd=replace(abcd,’http://localhost/’,'http://www.phpfensi.com/’) where pid>4
意思是把表aaaa里面pic>4的,字段abcd中的http://localhost/内容替换成http://www.phpfensi.com/
例2,代码如下:
- 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'; --phpfensi.com
- +------------------------+----------+
- | host | user |
- +------------------------+----------+
- | localhost.localdoslave | testuser |
- +------------------------+----------+
由查询结果到,数据已经更新成功.
Tags: mysql替换字段 mysql替换内容
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)