首页 > 数据库技术 > 详细

MySQL更新数据

时间:2021-04-19 11:46:20      阅读:14      评论:0      收藏:0      [点我收藏+]

8.3更新数据

8.3.1语法:

update表名set字段1名字=字段1的值,字段2名字=字段2的值 where条件

8.3.2更新所有数据

将所有人的成绩设置为100;

update t_user set score=100;

 

8.3.3根据条件更新

将学号是3的学生,成绩设为59;

update t_user set score=59 where id=3;

 

 

将名字为ww的学生,成绩设置60;

update t_user set score=60 where name=‘ ww ‘ ;

 

 

将学号是2的学生,成绩设置为99,名字"xl";

update t_user set score = 99, name = ‘xl‘ where id = 2;

 

 

8.3.4更新多个数据

将所有人成绩,减去10分。

update t_user set score = score* 0.7;

update t_user set score = score - 10;

 

MySQL更新数据

原文:https://www.cnblogs.com/w365/p/14675464.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!