In Oracle 12c, You may use OFFSET..FETCH..ROWS
option with ORDER BY
For example, to get the 3rd record from top:
SELECT * FROM sometableORDER BY column_nameOFFSET 2 ROWS FETCH NEXT 1 ROWS ONLY;
In Oracle 12c, You may use OFFSET..FETCH..ROWS
option with ORDER BY
For example, to get the 3rd record from top:
SELECT * FROM sometableORDER BY column_nameOFFSET 2 ROWS FETCH NEXT 1 ROWS ONLY;