When you want to use a non-clustered index
Nonclustered indexes are secondary indexes used to help the performance of queries not served by the clustered index. You’re typically going to want to add a nonclustered index to the column that’s in your WHERE clause and your most commonly run queries. You want to use these involved on columns that are in joins and... » read more