How to retrieve record number 70 from a table of 100 records?

Showing Answers 1 - 7 of 7 Answers

Parimala

  • Sep 5th, 2006
 


(select * from emp
minus
select * from emp where rownum < 70)
intersect
select * from emp where rownum <=70

  Was this answer useful?  Yes

Ram Pratap Singh

  • Sep 9th, 2006
 

select * from ( select rownum rnum, a.* from emp)

where rnum = 70

  Was this answer useful?  Yes

krishna

  • Sep 26th, 2006
 

select * from emp where rownum<71

minus

select * from emp where rownum<70;

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions