I have a table with two columns c1 and c2 both are integer. I have to select top 500 latest records with out order by desc. Table has more than 50 million records.
- c1 is clustered index with "order by asc".
- Cannot remove the clustered index done for c1 since it has too many dependencies.
- I need to sort the table in descending order of c2.
- So when I write a select query with out "order by desc" it should sort in descending order of c2..
Any possible way to achieve this.