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
In Oracle 12c, You may use OFFSET..FETCH..ROWS option with ORDER BY
OFFSET..FETCH..ROWS
ORDER BY
For example, to get the 3rd record from top:
SELECT * FROM sometable ORDER BY column_name OFFSET 2 ROWS FETCH NEXT 1 ROWS ONLY;