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
1 small change: n-1 instead of n.
select * from thetable limit n-1, 1