write a query for the fifth highest salary?

Answers were Sorted based on User's Feedback



write a query for the fifth highest salary?..

Answer / venkates

select distinct(a.sal) from emp a where 5=(select
count(distinct(b.sal)) from emp b where a.sal<=b.sal)

Is This Answer Correct ?    22 Yes 2 No

write a query for the fifth highest salary?..

Answer / nitin bisht

SELECT empSalary FROM empTable e1 WHERE (5 = (SELECT
COUNT(DISTINCT (e2.empSalary))
FROM empTable e2 WHERE e2.empSalary >= e1.empSalary))

Is This Answer Correct ?    13 Yes 0 No

write a query for the fifth highest salary?..

Answer / skumar

Hi, friends This one is working fine. I have tested.

SELECT TOP 1 t.esal
from
(
select top 5 esal from employee order by esal desc
) t
order by t.esal asc

Is This Answer Correct ?    9 Yes 6 No

write a query for the fifth highest salary?..

Answer / piyush gupta

select distinct(a.sal) from emp a where 5=(select
count(distinct(b.sal)) from emp b where a.sal<=b.sal)


you can this query for nth highest salary
replace 5 with any number

Is This Answer Correct ?    2 Yes 0 No

write a query for the fifth highest salary?..

Answer / prasanna

select max(sal) from emp where sal not in (select Top 4 sal
from emp order by sal desc)

Is This Answer Correct ?    1 Yes 0 No

write a query for the fifth highest salary?..

Answer / shahid

select *from(select sal,rank() over(order by sal desc)as sal_rank from emp) where sal_rank=5;

Is This Answer Correct ?    1 Yes 0 No

write a query for the fifth highest salary?..

Answer / bhramar

select top 1 Sal from(select distinct top 5 Sal from TestEmp order by Sal desc) a order by Sal

Is This Answer Correct ?    1 Yes 0 No

write a query for the fifth highest salary?..

Answer / suparna

select salary from employee e where 4=(select count(*) from
emp f where e.sal<f.sal)

Is This Answer Correct ?    8 Yes 8 No

write a query for the fifth highest salary?..

Answer / chethan

select Salary from ( select salary from emp order by desc) as employee where rownum = 5;

Is This Answer Correct ?    0 Yes 0 No

write a query for the fifth highest salary?..

Answer / bezalel

select salamt from
(
select rownum n,salamt from
(
select distinct salamt from emp order by salamt desc
)
)
where n=5

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Databases AllOther Interview Questions

Given a table Employee which has columns name and salary, write an SQL query to find the employee with the second highest salary.

0 Answers   Amazon,


Give the syntax of exception handling used in DBMS?

0 Answers   C DAC, CDAC,


What are the types of indexes that are present inside a database?

0 Answers   Abacus,


What is database server and how it works?

0 Answers  


What is the difference between oracle and MS Access?

0 Answers   Alcatel-Lucent,






what is data set ?

1 Answers  


What is the purpose of firebase?

0 Answers  


Define the following terms i. Inverted List ii. Candidate Key iii. B-Tree iv. Foreign Key

1 Answers   Ignou,


What is the function of cluster index?

0 Answers   Alcatel-Lucent,


Explain inner and outer joins with examples.

0 Answers   Agilent,


How do you pass parameter in stored procedure?

0 Answers   CGI,


What is global database name?

0 Answers  


Categories