write the query for find the top 2 highest salary in sql
server
Answers were Sorted based on User's Feedback
Answer / saritha
select distinct top 2 salary from EMP order by salary desc
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / adiseshu
select * from (
select dense_rank() over (order by salary desc) rno,* from
employees ) as a where rno in(1,2)
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / mohan c v
select min(salary) from
(select top 2 salary from phani order by salary desc) as a
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / tanay chaudhary
select * from(select emp.*,Dense_Rank() over(order by salary desc) as ranking from emp)as e where e.ranking in(1,2)
//emp=table name
//salary=column name
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / santosh kumar
select Top 1 salary from ( select top 2 salary from
emp_table order by salary desc)temptable order by salary
desc.
Is This Answer Correct ? | 13 Yes | 14 No |
Answer / santosh kumar
select Top 1 salary from ( select top 2 salary from
emp_table order by salary desc)temptable order by salary
asc.
Is This Answer Correct ? | 11 Yes | 12 No |
SELECT TOP 1 salary FROM (SELECT DISTINCT TOP 2 salary FROM
employee ORDER BY salary DESC) a ORDER BY salary
Is This Answer Correct ? | 3 Yes | 4 No |
Answer / neeraj sharma
select ename,sal from emp where rownum<=3 order by sal desc
Note:- every table has rownum column but it is hidden by
default you can see it by this
select rownum from your_table_name
Is This Answer Correct ? | 3 Yes | 4 No |
Answer / vijayalaxmi m khot
select max(sal) from emp where sal=(select max(sal) from emp
where sal<(select max(sal) from emp));
Is This Answer Correct ? | 1 Yes | 3 No |
Answer / shahid
select * from(select * from Employee order by salary desc) where rowNum<3
Is This Answer Correct ? | 0 Yes | 3 No |
What is the joins and how many types of Joins in sql server a diffrentiate ever one give a suaitable query
Can we use trigger new in before insert?
What is the difference between drop table and truncate table?
How to get a list of columns using the "sys.columns" view in ms sql server?
Does the order of columns in update statements matter?
What is the data type of time?
What is the use of MOVE keyword in restore command
If we delete pack Spec what will be the status of pack Body ?
What is checkpoint in sql server?
my problem is tempdb tempdb(dbname) 77752.95 MB(db size) 25345.03 MB (unallocated size) suppose i increased temp db size 10 gb . after increase the temp db showing 87 gb (dbsize) 25346.03MB(unallocated size)--unallocated size is showing same .please clarify.
Which are new data types introduced in sql server 2008?
List the different types of joins?