添加字段
alter table 表名 add 字段名 nvarchar(100) not null
修改字段
alter table 表名 alter column 字段名 int not null
删除字段
alter table 表名 drop column 字段名 not null