Primary key Ascending vs Descending
From a purely querying standpoint, it makes no difference whether your key is descending or ascending if you want to pull N most recent or N oldest records: The internal algorithms of SQL Server can navigate equally efficiently in both directions on a single-column index, regardless of the sequence in which the keys are stored. … Read more