Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

What is a super key?

0 Answers   3i Infotech,


What is the purpose of firebase?

0 Answers  


How do you pass parameter in stored procedure?

0 Answers   CGI,


what is the difference between relational calculus and relational algebra ?

6 Answers   TCS,


Explain database partitioning. What is its importance?

0 Answers  


Does aggregate and fact tables gets populated from transactional data with only diffrence in there granularity? Please clarify?

1 Answers  


What is a Database?

1 Answers  


Explain artificial key?

0 Answers  


Differentiate between delete and truncate table?

0 Answers  


What are indexes in oracle?

0 Answers   CGI,


Integrity constraints means..? how many and what are they?

4 Answers   AZTEC,


Is redis in memory database?

0 Answers  


Categories