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
Explain isolation levels. : Transact sql
What is the purpose of the sql select top clause?
how to convert dates to character strings? : Sql dba
what are enums used for in mysql? : Sql dba
How do you sort in sql?
What is sql integrity?
What is normalisation in sql?
What is the clause we need to add in function body to return variable?
Why select is used in sql?
Can we commit in trigger?
how many ways to get the current time? : Sql dba
Is nosql relational?
What is the difference between a procedure and a function?
How many sql statements are used? Define them.
what is a join? : Sql dba