write the query for find the top 2 highest salary in sql
server
Answer Posted / mohan c v
select min(salary) from
(select top 2 salary from emp order by salary desc) as a
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is sub query and its properties?
how many clustered indexes can be created on a table? : Sql server database administration
Explain the difference between primary keys and foreign keys?
How you can move data or databases between servers and databases in sql server?
What is msdb database? : SQL Server Architecture
Explain forward - only cursors?
How to create function with parameter in sql server?
What is 2nf in normalization?
define and explain the differences between clustered and non-clustered indexes.
What do we have to check in database testing?
What are the difference between primary key and unique key? : sql server database administration
What are the diifferences between the ms sql server vs mysql?
How to replace given values with null using nullif()?
What is normalization and its types?
What program is used to store the data source file?