标签: sql sql-server sql-server-2012
将为此语法创建什么索引?
CREATE INDEX idx_name ON table_name(column_name)
当我们写create index时,会创建什么类型的索引(clustured或non-clustered)?
create index
答案 0 :(得分:2)
如果未指定类型,则默认为NONCLUSTERED。
NONCLUSTERED
neuralnet
- 在表或视图上创建非聚集索引 CREATE INDEX i1 ON t1(col1); <小时/> 如果未指定CLUSTERED,则会创建非聚集索引。
- 在表或视图上创建非聚集索引 CREATE INDEX i1 ON t1(col1);