如果要修改MySQL字段类型,可是使用下面的方式:
alter table <表名> change <字段名> <字段名> <新的类型>;
如:
alter table people change areaId areaId varchar(255);
</pre>
change用法:
CHANGE old_col_name new_col_name column_definition
可以用来更改字段名或者字段类型
详见:http://dev.mysql.com/doc/refman/5.6/en/alter-table.html