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
Which is faster count (*) or count 1?
What are procedures used for?
how can we know the count/number of elements of an array? : Sql dba
What is the difference between function and procedure in pl/sql?
how to add a new column to an existing table in mysql? : Sql dba
How do you remove duplicates without using distinct in sql?
What is indexing in sql and its types?
Explain what is sql*plus?
How can the performance of a trigger be improved?
What is %type in sql?
Which data dictionary views have the information on the triggers that are available in the database?
What is t sql in sql server?
What is field delimiter?
How do I install sql?
What is pl sql block in dbms?