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
ADD:
LIMIT n,1
That will limit the results to one result starting at result n.