A table has 150 records. How do you retrieve 100th row to
120th row from that table ?
Answer Posted / ajit nayak
select rn, ename
from (select rownum rn, ename
from emp)
where rn between 3 and 7;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the different parts of a package?
What is varchar data type in sql?
Define the select into statement.
What is scope and visibility in PL/SQL?
explain the delete statements in sql
What is a call statement? Explain with an example.
What is before trigger?
Explain scalar functions in sql?
What are reports usually used for?
Under what condition it is possible to have a page level lock and row lock at the same time for a query? : Transact sql
Is inner join faster than left join?
What are the constraints available in sql?
What is a trigger in sql?
What is the difference between syntax error and runtime error?
What is the difference between a subquery and a join?