本文介绍: 这里使用为用户表bookuser在userphone列后边添加一个类型为INT的新列userage。使用为用户表bookuser在userage列后边添加一个类型为INT的新列sex。查看数据库中的表结构,可以查看插入之后的数据字段。
数据重新补充
这里使用alter table Bookbought.bookuser add userage INT after userphone;
为用户表bookuser
在userphone
列后边添加一个类型为INT
的新列userage
。
使用alter table Bookbought.bookuser add sex varchar(6) after userage ;
为用户表bookuser
在userage
列后边添加一个类型为INT
的新列sex
。
describe Bookbought.bookuser;
查看数据库中的表结构,可以查看插入之后的数据字段。
update更新数据
update 数据库.表名
set 字段 = 字段值
where 判断条件
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进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。