alter table TNAME add COLNAME int comment "comment test" after COLNAME2; --不加after默认加在最后面
alter table TNAME modify [column] COLNAME varchar(255);
alter table TNAME modify `COLNAME` double(16,4) NOT NULL DEFAULT '0.0000';
alter table TNAME drop column COLNAME;
#重命名一个表
alter table TNAME rename to TNAME1; --重新命令包
# 创建一个完全一样的表
create table TNAME1 like TNAME;
insert into TNAME1 select * from TNAME;
原文:http://blog.51cto.com/395469372/2116707