mysql批量替换字段中部分数据的方法

发布时间:2019-11-04编辑:脚本学堂
本文介绍了mysql数据库中批量替换字段中部分数据的方法,mysql字段替换的实例教程,有需要的朋友参考下。

mysql/ target=_blank class=infotextkey>mysql数据库批量替换字段数据,使用如下语句:
 

update 表a set 字段b = replace(字段b, 'aaa', 'bbb')

说明:把表a 字段b中的 aaa批量替换成bbb。
 
替换空值:
 

复制代码 代码示例:

update table
set column=''
where column is null

--删除所有的空格:
update 表a set 字段b   = trim(字段b);
 
--删除所有饱含'['或者']'或者'.'的字符
update 表a set 字段b = replace(字段b, '[','')   where instr(字段b,'[') > 0;
--替换所有含中文'-'的为英文'-'
update 表a   set 字段b = replace(字段b, '-','-')   where instr(字段b,'-') > 0;

--将所有的年月都替换成'-'
update 表a   set 字段b = replace(字段b, '年','-')   where instr(字段b,'年') > 0;
update 表a   set 字段b = replace(字段b, '月','-')   where instr(字段b,'月') > 0;

--将所有'2014-04-'这种类型的替换成'2014-04-01'
update 表a   set 字段b = concat( 字段b, '01')   where substring_index( 字段b, '-', -1) = '' and length(字段b) > 0 and length(字段b) > 5;

--将所有'2014-'这种类型替换成'2014-01-01'
update 表a   set 字段b = concat( 字段b, '01-01') where instr(字段b,'-') > 0 and   length(字段b) = 5;

--将所有 饱含'-',但是位数小于8的改成追加'-01'
update 表a   set 字段b = concat( 字段b, '-01') where instr(字段b,'-') > 0 and   length(字段b) < 8;

--将所有'2014'这样的改成'2014-01-01'
update 表a   set 字段b = concat(字段b,'-01-01') where instr(字段b,'-') = 0 and   length(字段b) = 4;

--最后将所有'2014-01-01'格式化成'2014年01月'
update 表a   set 字段b = date_format(字段b,'%y年%m月') where instr(字段b,'-') > 0;

以上就是mysql批量替换字段中部分数据的所有例子了,希望对大家有所帮助。