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
How do I enable sql encryption?
what is a field in a database ? : Sql dba
Can you inner join the same table?
What is materialized view in sql?
Does truncate free space?
Under what condition it is possible to have a page level lock and row lock at the same time for a query? : Transact sql
What are the 3 modes of parameter?
what is innodb? : Sql dba
What is a field in a database?
Can we create a trigger on view?
How to install oracle sql developer?
What is cost in sql execution plan?
What is data type in database?
What is minus?
what is the different between now() and current_date()? : Sql dba