1.修改字段长度
alter table 表名 alter column 表字段 nvarchar(300) not null
2.删除字段
alter table 表名 drop column 表字段
3.添加字段
alter table 表名 add 表字段 nvarchar(2) not null
4.修改字段名
alter table 表名 rename column 原字段 to 修改字段
5.创建双主键(前提条件主键字段不能为空)
alter table 表名with nocheck add
constratint 主键名字 primary key nonclustered(
[字段1],
[字段2]
)
6.创建多主键(前提条件主键字段不能为空)
alter table 表名with nocheck add
constratint 主键名字 primary key nonclustered(
[字段1],
[字段2],
…
[字段n]
)
7.去掉一列的重复数据
select distinct 字段名 FROM 数据表名