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
What is nonclustered index with included columns ?
Tell me about builtinadministrator?
What is b tree index?
Explain error handling in ssis?
How do I find sql server instance name?
Suppose you want to implement the one-to-one relationships while designing tables. How would you do it?
explain databases and sql server databases architecture? : Sql server database administration
Can you name some of the dml commands in sql?
If user is owning any SQL Objects, can we drop that user
Can the “if update (colname)” statement be used in a delete trigger?
What is logon trigger?
How to connect sql server management studio express to sql server 2005 express?
Explain the flow of creating a cube? : sql server analysis services, ssas
What are commonly used mssql functions in php?
List out the differences between global and local temp tables in sql server?