时间:2021-07-01 10:21:17 帮助过:229人阅读
Mysql数据库修改字段方法总结 1添加表字段 alter table student add sex varchar(2) not null; alter table student add id int unsigned not null auto_increment primary key 2.修改某个表的字段类型及指定为空或非空 alter table 表名称 modify 字段名称
alter table student add sex varchar(2) not null;
alter table student add id int unsigned not null auto_increment primary key
alter table 表名称 modify 字段名称 字段类型 [是否允许非空 not null / null];
eg: alter table student modify name varchar(20) null
alter table 表名称 change 字段原名称 字段新名称 字段类型 [是否允许非空not null / null]
eg: alter table student change sex xingbie varchar(3) not null;
alter table 表名称 drop 字段名称;
eg: alter table student drop xingbie;