If I have a simple table:
ArticleName (string)
CategoryID (int)
LastModified (datetime)
And I create an index:
CategoryID (ASC)
LastModified (ASC)
For the query:
SELECT * FROM table WHERE CategoryID = 1 ORDER BY LastModified ASC
Would I need a separate index for ordering by LastModified DESC
?