write a query to find the third maximum salary of a
employee.(table:employ col name:salary)

Answers were Sorted based on User's Feedback



write a query to find the third maximum salary of a employee.(table:employ col name:salary)..

Answer / ravindra

select max(sal) from emp where level=3 connect by prior sal>sal;

Is This Answer Correct ?    3 Yes 0 No

write a query to find the third maximum salary of a employee.(table:employ col name:salary)..

Answer / shrikant

SELECT MIN(sal) FROM emp WHERE
sal IN (SELECT distinct TOP 3 sal FROM emp ORDER BY sal
DESC)

select max(sal) from emp where sal<(select max(sal) from emp
where sal<( select max(sal) from emp));

select * from emp e
where 3 = (select count(sal) from emp
where e.sal < sal);

Select * from EMP_USER A where n-1 = (select count
(distinct (sal)) from EMP_USER B where A.sal<B.sal)

Is This Answer Correct ?    4 Yes 2 No

write a query to find the third maximum salary of a employee.(table:employ col name:salary)..

Answer / saiprasanna

select max(salary) from employ
where salary=(select max(salary) from employ where salary
<(select max(salary) from employ));

Is This Answer Correct ?    5 Yes 3 No

write a query to find the third maximum salary of a employee.(table:employ col name:salary)..

Answer / jithendranath.g

SELECT Z2.SAL FROM EMP Z1,EMP Z2
WHERE
Z2.SAL <=Z1.SAL
GROUP BY Z2.SAL
HAVING COUNT(Z2.SAL)=3

Is This Answer Correct ?    3 Yes 2 No

write a query to find the third maximum salary of a employee.(table:employ col name:salary)..

Answer / neha_gupta

select e.ename,a.sal from (select sal, rownum rnum ,rowid
rid from (select * from emp order by sal desc)) a , emp e
where a.rid= e.rowid
and a.rnum = 3

Is This Answer Correct ?    1 Yes 0 No

write a query to find the third maximum salary of a employee.(table:employ col name:salary)..

Answer / neha_gupta

select ename,sal from (select rownum rnum ,rowid rid from
emp order by sal desc) a , emp e
where a.rnum = 4
and a.rid= e.rowid

Is This Answer Correct ?    0 Yes 1 No

write a query to find the third maximum salary of a employee.(table:employ col name:salary)..

Answer / suresh

Select emp.*,dense_rank()over(order by sal desc) rn from emp
where rn=3;

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More Oracle AllOther Interview Questions

key flexfield structure

0 Answers   Infosys,


Give two methods you could use to determine what DDL changes have been made.

1 Answers  


HOW TO SAVE UNIVERSES AND DOCUMENTS IN THE REPOSITORY?

0 Answers  


can we use lexical perameter in oracle plsql if yes how

0 Answers  


statement string in open is null or 0 length ORA-40735

1 Answers   RoboSoft, Unilog,






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.

0 Answers   Accenture,


what is the difference b/w oracle8i and oracle9i

3 Answers   iGate,


How do you switch from an init.ora file to a spfile?

1 Answers   HCL, Wipro,


What view would you use to look at the size of a data file?

1 Answers  


i am working with OC 4.5 i have numbers in table in 10 row with some null values please tell me how to find total? Thanks

0 Answers   HCL,


Where would you look for errors from the database engine?

2 Answers   Fintellix,


How do you resize a data file?

2 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)