码迷,mamicode.com
首页 > 其他好文 > 详细

更新数据

时间:2021-04-21 12:06:39      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:个数   语法   set   字段   更新   条件   where   upd   user   

更新数据

语法:

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

更新所有数据

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

update t_user set score=100;

 

根据条件更新

将学号是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;

 

更新多个数据

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

update t_user set score = score* 0.7;

update t_user set score = score - 10;

 

更新数据

标签:个数   语法   set   字段   更新   条件   where   upd   user   

原文地址:https://www.cnblogs.com/M78-u-p/p/14677575.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!