1、给表添加字段
alter table 表名 add 字段名 int not null default 0;
2、删除表中某个字段
alter table 表名 drop column 字段名;
3、若表原字段有约束
alter table 表名 drop constraint 主/外键ID;