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...


How to find 6th highest salary from Employee table ?

Answers were Sorted based on User's Feedback



How to find 6th highest salary from Employee table ?..

Answer / saravakumar

SELECT TOP 1 salary FROM (SELECT DISTINCT TOP 6 salary FROM
employee ORDER BY salary DESC) a ORDER BY salary

Is This Answer Correct ?    30 Yes 8 No

How to find 6th highest salary from Employee table ?..

Answer / answer

SELECT MIN(SALARY) FROM EMPLOYEE WHERE SALARY IN (SELECT
DISTINCT TOP 6 MAX (SALARY) FROM EMPLOYEE ORDER BY SALARY
DESC)

Is This Answer Correct ?    16 Yes 4 No

How to find 6th highest salary from Employee table ?..

Answer / rahul gupta

select sal from employee e1 where 5 = (select count(*) from
employee e2 where e1.sal < e2.sal)

Is This Answer Correct ?    5 Yes 2 No

How to find 6th highest salary from Employee table ?..

Answer / lince thomas

select salary from(
select row_number() over(order by salary desc) as rno,*
from Employee)T where T.rno=6

Is This Answer Correct ?    3 Yes 0 No

How to find 6th highest salary from Employee table ?..

Answer / lince

select * from(select salary,dense_rank() over(order by salary desc) as rno from emp)T where T.rno=6

Is This Answer Correct ?    2 Yes 0 No

How to find 6th highest salary from Employee table ?..

Answer / anto

select distinct top6 salary from employee

Is This Answer Correct ?    2 Yes 2 No

How to find 6th highest salary from Employee table ?..

Answer / vj

with cte as
(
select dense_rank() over (order by salary desc)
maxSal ,* from Employee )
select * from cte where maxSal=6

Is This Answer Correct ?    0 Yes 0 No

How to find 6th highest salary from Employee table ?..

Answer / maheswar reddy s

select * from Employee e1 where 6=(select count(distinct(salary))from employee e2 where
e2.salary>=e1.salary)

Is This Answer Correct ?    0 Yes 0 No

How to find 6th highest salary from Employee table ?..

Answer / krishan kant

SELECT MIN(SALARY) FROM EMPLOYEE WHERE SALARY IN (SELECT
DISTINCT TOP 6 SALARY FROM EMPLOYEE ORDER BY SALARY
DESC)

Is This Answer Correct ?    0 Yes 0 No

How to find 6th highest salary from Employee table ?..

Answer / manikanta

select min(salary) as salary from Employee where salary >
(select min(salary)from employee)

Is This Answer Correct ?    1 Yes 4 No

Post New Answer

More SQL Server Interview Questions

I need a query that retrieves info from an Oracle table and a query that retrieves info from a SQL Server table. The info has to be joined together according to Record ID numbers. I have very limited access to the Oracle database but full control of the SQL Server database.How do I join two different queries from two different databases?

1 Answers  


What is store procedure?

0 Answers  


Where to find ntwdblib.dll version 2000.80.194.0?

0 Answers  


which one will take 1st priority in case of insert statement and select statement???

2 Answers   HCL,


Explain transaction server auto commit?

0 Answers  


What is the difference between osql and query analyzer?

0 Answers  


What is mapping schema?

0 Answers  


explain what is a schema in sql server 2005? Explain how to create a new schema in a database? : Sql server database administration

0 Answers  


Delete duplicate records from the table?(Table must have unique id)

7 Answers   TCS, Thomson Reuters,


What are subqueries in sql server? Explain its properties.

0 Answers  


What is the usage of the sign function?

0 Answers  


Do you know what are the ways available in sql server to execute sql statements?

0 Answers  


Categories