ALTER TABLE table_name CHANGE COLUMN column_name_old column_name_new 类型 COMMENT '描述信息' DEFAULT '默认值';
alter table 表名 modify column 列名 新的列的类型;