Sql 修改表结构

添加字段

alter table 表名 add 字段名 nvarchar(100) not null

修改字段

alter table 表名 alter column 字段名 int not null

删除字段

alter table 表名 drop column 字段名 not null

原文地址:https://www.cnblogs.com/zhouyg2017/p/11904520.html