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

前端 未结 4 1538
执念已碎
执念已碎 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:22

    An alternate solution to this question for all non-supported versions for TOP keyword is to use LIMIT. Example :-

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

提交回复
热议问题