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

what is checksum in sql server.........???

0 Answers   TCS,


How do I find the query plan in sql server?

0 Answers  


How can I create a plain-text flat file from SQL Server as input to another application?

2 Answers  


How do you create a data source?

0 Answers  


Explain about analysis services?

0 Answers  






What are triggers? How many triggers you can have on a table? How to invoke a trigger on demand?

0 Answers  


Give me any three differences between Truncate and Delete.

0 Answers   Genpact,


What is row_number function?

0 Answers  


What is side by side migration in sql server?

0 Answers  


What is a transact-sql statement batch in ms sql server?

0 Answers  


What are the benefits and tasks of object explorer? : sql server management studio

0 Answers  


Explain about temporary stored procedure?

0 Answers  


Categories