mysql添加字段:
alter table tablename Add column newcolumn int not null default 0 after whichcolumn (在哪个字段后面添加)
删除字段:
alter table tablename drop column oldcolumn
MySQL添加字段和删除字段
原文:http://www.cnblogs.com/liuchenupup/p/5300928.html