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 ttitle and btitle?
What are the different schemas objects that can be created using pl/sql?
Why we use join in sql?
Difference between table function and pipelined function?
Is sql procedural language?
What are the limitations of sql express?
Is sql easier than java?
What is the use of desc in sql?
Explain the difference between sql and mysql.
What is the difference between delete and truncate commands?
Why is sharding used?
Explain 3 basic parts of a trigger.
Why is sql better than hql?
How is debugging done?
How do you drop a trigger?