write the query for find the top 2 highest salary in sql
server
Answer Posted / kapil singh chauhan
select * from
(select ID,Salary from employee order by Salary desc)
where rownum < 3
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
What is query and its types?
What is autocommit mode in sql server?
What is the purpose of sql profiler in sql server?
What is the difference between osql and query analyzer?
What is the maximum rows in sql server table?
Explain subquery and state its properties?
What are the pre-defined functions in the sql server?
What is the optimization being performed in oracle and SQL Server?
Explain how many normalization forms?
how to invoke a trigger on demand? : Sql server database administration
What are the advantages to use stored procedures?
explain different types of constraints? : Sql server database administration
Explain microsoft sql server functions?
How do I determine how many instances of sql server are installed on a computer?
What is wrong with sql server client libarary dll, ntwdblib.dll?