To find second largest salary in Employee table

Answers were Sorted based on User's Feedback



To find second largest salary in Employee table..

Answer / anil

select max(salary) from tbl_employee where salay <(select max(salary) from tbl_employee)

Is This Answer Correct ?    30 Yes 6 No

To find second largest salary in Employee table..

Answer / saravanakumar

SELECT MAX(SALARY) FROM EMPLOYEE WHERE SALARY NOT IN
(SELECT MAX(SALARY) FROM EMPLOYEE)

Is This Answer Correct ?    13 Yes 1 No

To find second largest salary in Employee table..

Answer / ram

select *from emp e where &n in(select count(distinct sal)
from emp m where e.sal<=m.sal);

which will ask's u like :

enter the value for n : 2 (enter 2)
gives u second highest.

Is This Answer Correct ?    4 Yes 0 No

To find second largest salary in Employee table..

Answer / amit

select max(salary) from employee where salary != (select max
(salary) from employee)

Is This Answer Correct ?    4 Yes 1 No

To find second largest salary in Employee table..

Answer / vikas kant

select Top 1 salary from emp_Table where salary in(select
Top 2 Salary from emp_Table order by salary desc)

Is This Answer Correct ?    6 Yes 4 No

To find second largest salary in Employee table..

Answer / zulfikar ali

SELECT MAX(SALARY)
FROM EMPLOYEE
WHERE SALARY NOT IN(SELECT TOP 1 SALARY FROM EMPLOYEE ORDER
BY SALARY DESC)

Is This Answer Correct ?    2 Yes 1 No

To find second largest salary in Employee table..

Answer / padmapriya

Thanks every one who replied for my question.

Is This Answer Correct ?    1 Yes 0 No

To find second largest salary in Employee table..

Answer / v rajkumar

Select min(salary)FROM emp WHERE salary IN (SELECT distinct
TOP 2 salary FROM emp ORDER BY salary desc)
OR
Select top 1 salary from (select distinct top 2 salary from
emp order by salary desc) emp order by salary

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

Is This Answer Correct ?    1 Yes 0 No

To find second largest salary in Employee table..

Answer / satish

select salary from emp_Table_1 where 2= (select count(*)
form emp_Table_2 where emp_Table_2.salary < emp_Table_1.salary)

-satish

Is This Answer Correct ?    2 Yes 2 No

To find second largest salary in Employee table..

Answer / mohammad murtuza ali

select salary from employeetable where empsal is < max(salary)

Is This Answer Correct ?    4 Yes 4 No

Post New Answer

More SQL Server Interview Questions

i need to know how i display department which has salary > =5000 for the below table Department ----------- salary deptname 1000 a 3000 a 2000 b 3000 b 4000 c 5000 c kindly send the query to thilakvinoth13@gmail.com

6 Answers  


tell me the disaster recovery plan

0 Answers   Microsoft,


What are the five characteristics of good data?

0 Answers  


Define outer join?

0 Answers  


What is the difference function and stored procedure?

0 Answers  






Is it possible in sql table to have more than one foreign key?

0 Answers  


what is macro?

5 Answers   Excel, Global Innovation, Wipro,


what is extended StoreProcedure ?

3 Answers   Satyam,


Where is my database stored on the hard disk in ms sql server?

0 Answers  


When we can say that is in BCNF?

3 Answers   BitWise,


What are different types of statement?

0 Answers  


Can you explain about buffer cash and log cache in sql server?

0 Answers  


Categories