How to find 8th person record in a table?
Plz mail ur answers to
mak2786@gmail.com
Regards
Arun
Answers were Sorted based on User's Feedback
Answer / chaitanya.s
retrieving 8th record from emp table in scott instance
select * from emp where rownum<=8
minus
select * from emp where rownum<=7
| Is This Answer Correct ? | 9 Yes | 3 No |
Answer / fahad
select * from emp where rownum<=8
minus
select * from emp where rownum<=7
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / shaibya sandeep dwivedi
select id,salary from (select rownum as t,id,salary from
emp) where t=8;
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / raj
select * from (select a.*, rownum as n from temp_table a)
where n = 8
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / raj
select rownum,ename,address from emp where rownum=8;
| Is This Answer Correct ? | 1 Yes | 6 No |
Answer / hitesh rathod
or we can directly use
select * from emp where rownum=8;
| Is This Answer Correct ? | 6 Yes | 12 No |
I need a Technical evaluation between Oracle and SAP ? please do a need ful.
What type of index should you use on a fact table?
Explain the difference between $ORACLE_HOME and $ORACLE_BASE.
What is the importance of batch source set up in ar? : oracle accounts receivable
A scenario for amount correction & how to use amount correction functionality in AP invoices
TILL WHAT LEVEL OF SECURITY BO SUPPORTS?
how to write a query without using where? Example- select * from employee where empno=10 I need to write this query without where clause.
we have 10 concurrent programs under one request group out of 10 ccps all users submitting only 9 programs from srs window remaining one ccp for specific user how can it possible send me answer asap.
can u give guidance abt packages of plsql
Explain the payment term in ar. : oracle accounts receivable
while creating requisitions i am unable to see the list of organisation can anyone help me out ?
can we use lexical perameter in oracle plsql if yes how