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
Can we delete column in sql?
what's the difference between a primary key and a unique key? : Sql dba
What is normalization? How many normalization forms are there?
How to use boolean type in select statement?
Where the sql database files are stored?
Show the two pl/sql cursor exceptions.
Why primary key is required?
How you can copy a file to file content and file to pl/sql table in advance pl/sql?
what is primary key? : Sql dba
how many columns can be used for creating index? : Sql dba
What is data profiling in sql?
What are local and global variables and their differences?
Is null operator in sql?
What is the difference between python and sql?
What is an exception in pl/sql?