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;