How to select the nth row in a SQL database table?

后端 未结 30 2505
执笔经年
执笔经年 2020-11-22 06:06

I\'m interested in learning some (ideally) database agnostic ways of selecting the nth row from a database table. It would also be interesting to see how this can b

30条回答
  •  囚心锁ツ
    2020-11-22 06:32

    In Sybase SQL Anywhere:

    SELECT TOP 1 START AT n * from table ORDER BY whatever
    

    Don't forget the ORDER BY or it's meaningless.

提交回复
热议问题