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
The in operator may be used if you know the exact value you want to return for at least one of the columns.
How much does sql certification cost?
what are properties of a transaction? : Sql dba
how to create a new table by selecting rows from another table in mysql? : Sql dba
What is Collation Sensitivity ? What are the various type ?
What is user in sql?
Why is pl sql used?
what is a composite key ? : Sql dba
What does sql stand for?
what is csv? : Sql dba
What is linq to sql?
How do I create a memory optimized filegroup?
Are ddl triggers fired for ddl statements within a pl/sql code executed using the dbms.sql package?
What is a scalar value in sql?
What is a sql select statement?