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 the query for find the top 2 highest salary in sql
server

Answers were Sorted based on User's Feedback



write the query for find the top 2 highest salary in sql server..

Answer / krishna

select * from emp e where 2>(select count(esal) from emp
where e.esal<=esal)

Is This Answer Correct ?    3 Yes 7 No

write the query for find the top 2 highest salary in sql server..

Answer / uday

select * from Emp e where 1=(select count(Distinct
d.esal)from emp d where d.esal>e.esal)

i am sure that it should work.


Any thing wrong plz inform me

Is This Answer Correct ?    5 Yes 9 No

write the query for find the top 2 highest salary in sql server..

Answer / k.elumalai

select max(salary)from emp where salary <(select sum(salary)
from emp)

Is This Answer Correct ?    6 Yes 12 No

write the query for find the top 2 highest salary in sql server..

Answer / krishna

select * from emp e where 2>=(select count(distinct esal)
from emp where e.esal<=esal)

Is This Answer Correct ?    8 Yes 16 No

write the query for find the top 2 highest salary in sql server..

Answer / santhosh kumar

select Distinct Top 2 Salary from EMP order by Salary desc

Is This Answer Correct ?    7 Yes 15 No

write the query for find the top 2 highest salary in sql server..

Answer / sivashankar.soma

select ename,sal from emp E where 1=(select count(*) from
emp where E.sal<sal)

Is This Answer Correct ?    16 Yes 29 No

Post New Answer

More SQL Server Interview Questions

Can we take the full database backup in log shipping?

0 Answers  


What is the difference between the 2 operating modes of database mirroring?

0 Answers  


how to find nth highest salary

103 Answers   Cognizant, IBM, NexGen, Oracle,


Tell me what is log shipping?

0 Answers  


When do you use SQL Profiler?

3 Answers   Wipro,


What is a ddl statement?

0 Answers  


What is referential integrity? What are the advantages of it?

4 Answers   Descon, Digital Domain,


What is normalization in Database ?

4 Answers  


what is the difference between count(*) and count(1) ?

0 Answers   MCN Solutions,


What is meant by referential integrity?

0 Answers   Blue Star,


What is the use of MOVE keyword in restore command

3 Answers   IBM,


What is “begin trans”, “commit tran”, “rollback tran” and “savetran”?

0 Answers  


Categories