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 / anu

Select max(Sal) from emp
Where
Sal
<
(Select max(Sal) from emp);

Is This Answer Correct ?    0 Yes 0 No

To find second largest salary in Employee table..

Answer / sujith

select empname,salary from(
select empname,salary, rank() over( order by salary desc) ss from emp)
where ss=2;

Is This Answer Correct ?    3 Yes 4 No

To find second largest salary in Employee table..

Answer / ela tiku

Select Max(SAL) FROM emp WHERE sal<(SELECT MAX(SAL) FROM
emp)


<<<assuming sal is the column name and emp is the table
name>>>

Is This Answer Correct ?    0 Yes 1 No

To find second largest salary in Employee table..

Answer / kuduba.r

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

Is This Answer Correct ?    0 Yes 1 No

To find second largest salary in Employee table..

Answer / anjum

SELECT MAX(SALARY)FROM EMP WHERE SALARY(SELECT MAX(SALARY)
FROM EMP)

Is This Answer Correct ?    0 Yes 1 No

To find second largest salary in Employee table..

Answer / murugesh

select * from (select row_number over( order by salary
desc) as salcount,empid,salary from employee) emp
where emp.salcount = 2

Is This Answer Correct ?    1 Yes 2 No

To find second largest salary in Employee table..

Answer / chitharthan

select max(salary)-1 from employeetable

Is This Answer Correct ?    0 Yes 10 No

Post New Answer

More SQL Server Interview Questions

Explain different types of collation sensitivity?

0 Answers  


How to genrate automaticlly empid like gt001

4 Answers  


What is the benefit of normalization?

0 Answers  


tell me the disaster recovery plan

0 Answers   Microsoft,


Describe in brief system database.

0 Answers  






How do I determine how many instances of sql server are installed on a computer?

0 Answers  


What is sql server used for?

0 Answers  


What is merge replication?

0 Answers  


Write a SQL query to make a column as unique?

0 Answers   Cap Gemini,


What is the use of keyword with encryption.

0 Answers  


What is the difference between upgrade and migration in sql server?

0 Answers  


What are the default system databases in sql server 2000?

0 Answers  


Categories