find out the third highest salary?

Answers were Sorted based on User's Feedback



find out the third highest salary?..

Answer / sanil

select first_name,salary from employees a
where (select count(distinct(salary)) from employees aa
where a.salary<=AA.SALARY) = &n;

Is This Answer Correct ?    0 Yes 5 No

find out the third highest salary?..

Answer / anish nama

select Max(salery) from salery where salery IN( select
top N salery from salery order by salery asc)

Is This Answer Correct ?    1 Yes 6 No

find out the third highest salary?..

Answer / hhh

select * from employee e where 3 = (select
count(distinct(salary)) from employee where e.salary <= salary);

Is This Answer Correct ?    0 Yes 5 No

find out the third highest salary?..

Answer / brijesh

hi,

this query gives you the Nth highest salary, the trick is to
write (N-1) in the given place;

select salary from table as table1

where (n-1) =

(select count(salary) from table

where table1.salary<salary);

Is This Answer Correct ?    0 Yes 6 No

find out the third highest salary?..

Answer / mamta

select rownum as maxsal,sal
from (select sal from emp order by sal desc)
where rownum <4

Is This Answer Correct ?    0 Yes 6 No

find out the third highest salary?..

Answer / amit sutar

select min(salary)

from(select distinct(salary)
from employees
order by salary desc)

where rownum<=5;

Is This Answer Correct ?    1 Yes 7 No

find out the third highest salary?..

Answer / alka

select min(salary)
from(select salary
from emp
order by salary desc
)
where rownum <=3

Is This Answer Correct ?    0 Yes 8 No

find out the third highest salary?..

Answer / tejeswara rao potnuru

Find Out The Nth Highest Salary


SELECT MAX(SAL),LEVEL FROM EMP
WHERE LEVEL=&LEVELNO
CONNECT BY PRIOR SAL>SAL
GROUP BY LEVEL;

Is This Answer Correct ?    0 Yes 8 No

find out the third highest salary?..

Answer / husenaiah.b

select empno,ename,sal from
(select empno,ename,sal from emp order by sal desc)
group by rownum,ename,sal having rownum=&n;
from this query we can find top nth sal

Is This Answer Correct ?    22 Yes 38 No

find out the third highest salary?..

Answer / naveen kumar

Hi everybody,
This is one way to get the third highest salary
select ROWNUM as RANK from (select * from emp order by sal)
where ROWNUM<=3

Is This Answer Correct ?    11 Yes 27 No

Post New Answer

More Oracle General Interview Questions

can a table has a column that has only view data and in other columns we can change data?

2 Answers   Secon,


Why cursor variables are easier to use than cursors?

0 Answers  


Why required to run root.sh at the time of installation and what exactly it will do

1 Answers  


what is the syntax of UPDATE command?

8 Answers  


Q) How to Find Max Date from each Group? (Asked in Infosys (INFI)Interview)

4 Answers   Infosys,






how can get like this result table A col1 col2 --- ----- a A b B C C .. .. .. ... .. ... wants result like for a single column col1 ------ a,b,c,........n of data and another is col1 ------- A B C D ........ a b b d ........

2 Answers   TCS,


Difference between the “verify” and “feedback” command?

0 Answers  


What is an oracle cursor variable?

0 Answers  


How would you go about verifying the network name that the local_listener is currently using?

0 Answers  


What are the uses of linked server and explain it in detail?

0 Answers  


How to drop an existing view in oracle?

0 Answers  


How to create a testing table in oracle?

0 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)