首页 >数据库 >mysql教程 >Mysql数据库修改字段方法总结

Mysql数据库修改字段方法总结

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB原创
2016-06-07 15:53:061967浏览

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;

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn