mysql怎么批量修改某字段的值,遇到一个批量更改数据库某字段值的需求,要求把sex为'1'的数据的headpicture改为'1.png',sex为'0'的数据的headpicture改为'0.png'。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'; 这种方法适用
修改语句:
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怎么批量修改某字段的值
基础教程推荐
猜你喜欢
- 关于MySQL中explain工具的使用 2023-07-27
- python中pandas库的iloc函数用法解析 2023-07-28
- Mysql查询所有表和字段信息的方法 2023-07-26
- Mysql主从三种复制模式(异步复制,半同步复制,组复 2022-09-01
- Python常见库matplotlib学习笔记之多个子图绘图 2023-07-27
- Redis如何实现延迟队列 2023-07-13
- Sql Server Management Studio连接Mysql的实现步骤 2023-07-29
- 【Redis】数据持久化 2023-09-12
- SQLServer 清理日志的实现 2023-07-29
- 如何将excel表格数据导入postgresql数据库 2023-07-20