0
votes
Is there a difference between id,date or date,id index in sql server
Yes, it does matter. Suppose you create an index on columns (A, B). You can do a SELECT with a WHERE clause including both columns and the index can be used. The index will also be used if you do a …
