How to read 2nd highest sal from EMP table?

Answers were Sorted based on User's Feedback



How to read 2nd highest sal from EMP table?..

Answer / sasikala

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

Is This Answer Correct ?    11 Yes 0 No

How to read 2nd highest sal from EMP table?..

Answer / b.kumar

-- USING MS SQL SERVER

SELECT TOP 1 FROM

( SELECT DISTINCT TOP 2 FROM EMP ORDER BY SAL DESC) EMP
ORDER BY SAL ASC

Is This Answer Correct ?    2 Yes 0 No

How to read 2nd highest sal from EMP table?..

Answer / gali kondareddy

SELECT * FROM EMP WHERE SAL =(SELECT MIN(SAL) FROM EMP WHERE SAL IN (SELECT TOP 2 SAL FROM EMP ORDER BY SAL DESC))

Is This Answer Correct ?    1 Yes 0 No

How to read 2nd highest sal from EMP table?..

Answer / sheshu4040

SELECT MAX(EMP_SALARY) FROM EMP
WHERE EMP_SALARY NOT IN (SELECT MAX(EMP_SALARY) FROM EMP)

Is This Answer Correct ?    0 Yes 0 No

How to read 2nd highest sal from EMP table?..

Answer / arnab bhui

Using Oracle........

create table emp
( id number(10),
sal numeric(10,5)
);

SQL> select max(sal) from (( select sal from emp ) minus ( select sal from emp where sal >= all ( select sal from emp )));

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More SQL Server Interview Questions

how to rest identity columns in sql server

3 Answers   Matrix,


how many non clustered index in sql server 2008,2010,2012

2 Answers   Accenture,


How do I setup a sql server database?

0 Answers  


select empid empname from employee What is the result for the about query?

4 Answers  


What are the different types of subquery?

0 Answers  






List the different index configurations possible for a table?

0 Answers  


What is the difference between char and varchar2 datatype in sql?

0 Answers  


If user is owning any SQL Objects, can we drop that user

0 Answers  


Explain about protocol layer present in SQL server?

0 Answers  


Explain steps of normalization?

0 Answers  


What are the different types of replication you can set up in sql server?

0 Answers  


What's the difference between DELETE TABLE and TRUNCATE TABLE commands?

9 Answers  


Categories