数据重新补充

这里使用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

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_47320.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注