Mysql数据库修改字段方法总结
程序员文章站
2022-06-15 16:43:53
...
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 字段名称
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 字段名称 字段类型 [是否允许非空 not null / null];
eg: alter table student modify name varchar(20) null
3.修改某个表的字段名称及指定为空或非空
alter table 表名称 change 字段原名称 字段新名称 字段类型 [是否允许非空not null / null]
eg: alter table student change sex xingbie varchar(3) not null;
4如果要删除某一字段,可用命令:
alter table 表名称 drop 字段名称;
eg: alter table student drop xingbie;