加字段
alter table xx add xx varchar(100) default null comment '注释';
修改字段
alter table xx modify column xx tinyint(4) default null comment '注释';
删除字段
alter table xx drop xx;
alter table xx add xx varchar(100) default null comment '注释';
alter table xx modify column xx tinyint(4) default null comment '注释';
alter table xx drop xx;