SQL Server添加索引

聚簇索引 create clustered index index_name on table_name (cloumn_name);
非聚簇索引 create nonclustered index index_name on table_name (cloumn_name);
唯一索引 create unique index index_name on table_name(cloumn_name);

猜你喜欢

转载自blog.csdn.net/u014609263/article/details/88842343