是否可以在sql server 2005中将聚簇索引转换为非聚簇索引或非聚簇索引转换为聚簇索引.
请将此查询转换为聚集索引:
create index index1 on mytable(firstcolumn)
Run Code Online (Sandbox Code Playgroud)
请将此查询转换为非聚集索引:
create clustered index clusindex1 on mytable(cluscolumn)
Run Code Online (Sandbox Code Playgroud)