create clustered index index_name on table_name(column asc,)
create unique clustered index index_name on table_name(column asc,) //唯一聚集索引
drop index index_name on table_name with (online=off)
非聚集索引:物理与逻辑顺序不同,一张表可以存在多个非聚集索引。形如:字典按部首查找生字。
create nonclustered index index_name on table_name(column asc,)
drop index index_name on table_name with (online=off)