标签:
--创建唯一聚集索引
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
标签:
原文地址:http://www.cnblogs.com/yubufan/p/4312825.html