列级添加约束
alter table 表名 modify column 字段名 字段类型 约束
表级添加约束
alter table 表名 add 【constraint 约束名】 约束类型(字段名)【外键的引用】
列级删除非空约束
alter table 表名 modify column 字段名 字段类型 null;
删除默认约束
alter table 表名 modity column 字段名 字段类型 ;
删除主键
alter table 表名 drop column primary key;
删除唯一
alter table 表名 drop column index 字段名;
删除外键
alter table 表名 drop column foreign key 字段名;