Hi,
I have a large table (2M rows) with an id column. I've put a primary key on the id column which in turn automatically creates a clustered index on this column in ASC order. All of my queries are actually based on sorting the id in DESC order. Would it be advantageous for me to recreate my primary key with the sort order as DESC ??
Thanks in advance
I have a large table (2M rows) with an id column. I've put a primary key on the id column which in turn automatically creates a clustered index on this column in ASC order. All of my queries are actually based on sorting the id in DESC order. Would it be advantageous for me to recreate my primary key with the sort order as DESC ??
Thanks in advance
Comment