A table has 150 records. How do you retrieve 100th row to
120th row from that table ?
Answer Posted / ajit
select Ename, empno, rn
from (select rownum rn, ename, empno
from emp)
where rn between &gno and &gno
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the non-clustered index in sql?
What is the difference between an inner join and an outer join?
How many parts of a pl sql block are optional?
What does plv msg allows you to do?
What is the source code of a program?
What is duration in sql profiler trace?
What is difference between sql and oracle?
What pl/sql package consists of?
What are inner and outer joins examples of both?
What is a stored procedure in sql with example?
What is sqlcontext?
What are different methods to trace the pl/sql code?
What is type and rowtype in pl sql?
What is an index? What are the types of indexes? How many clustered indexes can be created on a table?
what is the difference between nested subquery and correlated subquery?