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;
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: MySQL中如何确保数据的一致性和完整性