write the query for find the top 2 highest salary in sql
server
Answer Posted / chandan kumar
Select Top 1 salary from(select top 2 salary from emp_table
order by salary asc)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain the collation?
What are statistics?
Explain the steps to use transact-sql cursor?
What is difference between temp table and cte?
How do you delete a trigger?
What is a natural primary key?
do you know how to configure db2 side of the application? : Sql server database administration
What is the difference between for xml raw and for xml auto?
Is there any difference between primary key and unique with the not null condition?
What do you mean by the term 'normalization'?
Explain microsoft sql server functions?
Tell me what is the stuff and how does it differ from the replace function?
Do you know concepts and capabilities of sql server?
Write a sql query to get zero records from a table having n number of records?
How to rebuild master databse?