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 is dense_rank?
What is group function in sql?
Can you join a table to itself?
Can I learn sql in a week?
What types of commands can be executed in sql*plus?
What is difference between stored procedures and application procedures?
How to return multiple rows from the stored procedure?
Difference between global and parameter variables?
Are sql database names case sensitive?
What sql database should I use?
Why trigger is used in sql?
How to use transactions efficiently : transact sql
What is latest version of sql?
how are mysql timestamps seen to a user? : Sql dba
What are pl/sql cursor exceptions?