非聚集
create index 索引名 on 表名(字段名) --也可以是字段名列表(复合索引)
聚集
create clustered index 索引名 on 表名(字段名)
唯一
create unique index 索引名 on 表名(字段名) --也可以是字段名列表(复合索引)
create index 索引名 on 表名(字段名) --也可以是字段名列表(复合索引)
create clustered index 索引名 on 表名(字段名)
create unique index 索引名 on 表名(字段名) --也可以是字段名列表(复合索引)