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
Oracle:
select * from (select foo from bar order by foo) where ROWNUM = x