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 would you get the current date in mysql? : Sql dba
What is a sql profiler?
how to create a new table by selecting rows from another table in mysql? : Sql dba
What is rank () in sql?
Can we insert data into view?
How is a process of pl/sql compiled?
Can two tables have same primary key?
What is the primary use of normalization?
Can I call a procedure inside a function?
What is the difference between subquery and correlated query?
What is the difference between inner join and outer join?
Is postgresql a server?
what is a table in a database ? : Sql dba
How to use distinct and count in sql query? Explain
what is a composite primary key ? : Sql dba