More than one indexes on same column in SQL server

apeeds0o  于 5个月前  发布在  SQL Server
关注(0)|答案(1)|浏览(69)

If we create one more non-clustered index on a column which already have one in SQL server, what Would be the effect of that?

vd8tlhqk

vd8tlhqk1#

Yes, you can do it. But either more indexes on a column or the use of a non-clustered index in a table may decrease the performance.

The effect is judged at runtime based on your search condition.

http://logicalread.solarwinds.com/duplicate-indexes-and-sql-server-performance-nh01/#.VWP8JUaWvQA

SQL Server: multiple index for the same columns performance

Create more than one non clustered index on same column in SQL Server

SQL Server creating multiple nonclustered indexes for one column vs having multiple columns in just one index

相关问题