MySQL 8 update语句更新数据表里边的数据

2023-12-13 04:17:40

数据重新补充

这里使用alter table Bookbought.bookuser add userage INT after userphone;为用户表bookuseruserphone列后边添加一个类型为INT的新列userage
使用alter table Bookbought.bookuser add sex varchar(6) after userage ;为用户表bookuseruserage 列后边添加一个类型为INT的新列sex
在这里插入图片描述

describe Bookbought.bookuser;查看数据库中的表结构,可以查看插入之后的数据字段。
在这里插入图片描述

update更新数据

使用格式如下:

update 数据库.表名 
set 字段 = 字段值  
where 判断条件

使用下方的update语句把以前没有填上去的年龄填上去。

update Bookbought.bookuser set userage = 31,sex='male' where id = 1;
update Bookbought.bookuser set userage = 32,sex='female' where id = 2;
update Bookbought.bookuser set userage = 33,sex='male' where id = 3;
update Bookbought.bookuser set userage = 34,sex='female' where id = 4;
update Bookbought.bookuser set userage = 35,sex='male' where id = 5;
update Bookbought.bookuser set userage = 36,sex='male' where id = 6;
update Bookbought.bookuser set userage = 37,sex='female' where id = 7;
update Bookbought.bookuser set userage = 38,sex='male' where id = 8;
update Bookbought.bookuser set userage = 45,sex='male' where id = 9;
update Bookbought.bookuser set userage = 50,sex='female' where id = 10;

在这里插入图片描述

文章来源:https://blog.csdn.net/qq_42108074/article/details/134819842
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。