沃梦达 / 编程技术 / 数据库 / 正文

mysql怎么批量修改某字段的值

mysql怎么批量修改某字段的值,遇到一个批量更改数据库某字段值的需求,要求把sex为1的数据的headpicture改为1.png,sex为0的数据的headpicture改为0.png。 修改语句: update t_user set t_user.headpicture= REPLACE (headpicture,'3','1.png') where t_user.sex='1'; 这种方法适用

mysql怎么批量修改某字段的值,遇到一个批量更改数据库某字段值的需求,要求把sex为'1'的数据的headpicture改为'1.png',sex为'0'的数据的headpicture改为'0.png'。


修改语句:
update t_user set t_user.headpicture= REPLACE (headpicture,'3','1.png') where t_user.sex='1';
这种方法适用于原headpicture字段值不为空的情况下。我的原数据是空,用这种方法还要先给headpicture赋值。
't_user'是表名,'headpicture'是要修改的字段名,replace(修改后的字段名,'被修改的内容','修改后的内容'),where后可以设置一些修改的前提条件。

无视空值的sql方法其实可以这样写:
update t_user set headpicture ='0.png' where sex ='0'; 

本文标题为:mysql怎么批量修改某字段的值

基础教程推荐