mysql怎么修改数据表的属性
mysql中修改数据表属性的方法
1.将表中的myisam属性修改为utf8属性
alter table '表名' engine=myisam charset=utf8;
2.在表中添加一个GetewayId字段,类型为int,且不能为null
alter table 'test' Add column GatewayId int not null default 0
3.修改表中的birth字段,允许其为空
alter table expert_info change birth birth varchar(20) null;
声明:本站所有作品(图文、音视频)均由用户自行上传分享,或互联网相关知识整合,仅供网友学习交流,若您的权利被侵害,请联系 管理员 删除。
本文链接:http://news.ew35.com/