display records from 5 to 9 using rowid or rownum
Answer Posted / ramaraju
select
ename
from
emp
order by ename
offset 4 rows
fetch next 5 rows only;
try this answer oracle 12c introduced offset fetch rows.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the usage of sql functions?
What are three advantages to using sql?
Explain sql data types?
What are the different ddl commands in sql?
how to run 'mysql' commands from a batch file? : Sql dba
Which is better join or subquery?
how can you see all indexes defined for a table? : Sql dba
What is a join?
What is on delete restrict?
what is union, minus and interact commands? : Sql dba
How do you write an inner join query?
What is partition by in sql?
how can we encrypt and decrypt a data present in a mysql table using mysql? : Sql dba
What is the difference between execution of triggers and stored procedures?
What is the difference between rollback and rollback to statements?