修改表:
修改字段类型
alter table 表名 modify 字段名 字段类型 【附加属性】【after 字段名|first】
修改字段名
alter table 表名 change 原字段名 新字段名字段类型【附加属性】【after 字段名|first】
alter table 表名 add字段名 字段类型 【附加属性】【after 字段名|first】
alter table 表名 drop 字段名
原文:http://www.cnblogs.com/nyxd/p/5356998.html