--创建唯一聚集索引
create unique clustered index pk_table1 on table1 (column1)

--创建唯一非聚集索引
create unique nonclustered index IX_table1_column2 on table1(column2)

--创建不唯一非聚集索引
create index IX_table1_column1 on table1(column1)

--删除索引
drop index pk_table1 on table1

posted on 2015-03-04 11:25  御不凡  阅读(507)  评论(0编辑  收藏  举报