SyntaxFix
Write A Post
Hire A Developer
Questions
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;