write the query for find the top 2 highest salary in sql
server
Answers were Sorted based on User's Feedback
Answer / kapil singh chauhan
select * from
(select ID,Salary from employee order by Salary desc)
where rownum < 3
| Is This Answer Correct ? | 4 Yes | 3 No |
Answer / karan
select empname,sal from empdpt e where 1=(select count(*) from
empdpt where e.sal<sal)
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / nilesh
select * from employee2 e where 2=(select count(distinct salary) from employee2
where e.salary<=salary)
Its working.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / mohan c v
select min(salary) from
(select top 2 salary from emp order by salary desc) as a
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / priyanka
select salary from emp where rowno=3 order by sal desc.
but this query works only when you have to create index.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ravi pahuja
selecl distinct top 2 salories from emp order by salory desc
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / girish
select max(salary) from emp where sal<(select max(salary)
from emp
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / chandan kumar
Select Top 1 salary from(select top 2 salary from emp_table
order by salary asc)
| Is This Answer Correct ? | 0 Yes | 0 No |
what is create database syntax? : Sql server database administration
What is a mutating table error and how can you get around it?
What is the use of builtinadministrators group in sql server? : sql server security
What is the concept of optimization?
Explain what is the main purpose of having conversation group?
What is a functions and types in sql server?
What is the recommended total size of your memory optimized tables?
Can you explain the role of each service?
What are different backups available in sql server?
How to use “drop” keyword in sql server and give an example?
How to count rows with the count(*) function in ms sql server?
What are the steps you will take to improve the performance of a poor performing query?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)