Select Top N Records Ordered by X, But Have Results in Reverse Order

前端 未结 4 1537
执念已碎
执念已碎 2020-12-11 15:50

I\'m trying to get the top N records (when ordered by some column X), but have the result set in reverse order. The following statement is incorrect, but pr

4条回答
  •  暖寄归人
    2020-12-11 16:37

    SELECT * FROM 
       (SELECT TOP 10 * FROM FooTable ORDER BY X DESC) as myAlias 
    ORDER BY X ASC 
    

    i.e. you might need an alias on your subquery, but other than that it should work.

提交回复
热议问题