please tell me the query to get details of the employee
having the second largest salary
Answer Posted / rathi
If we had a table named Employee which had a column named
Salary and we had to find the second highest Salary in the
Employee table, the query for the same would be:
SELECT TOP 1 Salary FROM (SELECT TOP 2 Salary FROM Employee
ORDER BY Salary DESC) AS E ORDER BY Salary ASC
The subquery or the inner query would return the top 2 rows
in descending Salary order which would be:
5000
4000
The outer query would then select the top 1 row from the
subquery results in ascending Salary order which would be:
4000
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Explain the creation and execution of a user-defined function in the sql server?
Explain database normalization?
What is Command line parameters in PLSQL.?
What is create command?
Tell me what do we need queues in sql service broker?
How to list all user names in a database?
What does it mean if @@cursor_row returns a negative number?
what's the difference between delete table and truncate table commands? : Sql server database administration
What is partitioned view?
how many layers of tcp/ip protocol combined of? : Sql server database administration
Can we update data in a view?
How to generate create table script on an existing table in ms sql server?
What is dbcc command in sql server?
Do you know what are acid properties?
What does man by sql wildcard characters in sql server?