1
如果我有一個簡單的表:表索引是否可逆?
ArticleName (string)
CategoryID (int)
LastModified (datetime)
我創建一個索引:
CategoryID (ASC)
LastModified (ASC)
對於查詢:
SELECT * FROM table WHERE CategoryID = 1 ORDER BY LastModified ASC
我需要一個單獨的索引由LastModified DESC
訂購?
不一定,但這將有助於避免執行計劃中的SORT操作員。通常他們花費相當多。 –
好讀 - [鏈接](http://stackoverflow.com/questions/743858/sql-server-indexes-ascending-or-descending-what-difference-does-it-make) – Abhishek