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
How to use column default values in insert statements in ms sql server?
Write a sql query to sort on different column name according to the parameters passed in the function?
Define indexes?
What is Sqlpaging in SqlServer 2005 ?
Explain why variables called the most powerful component of ssis?
How can I check that whether automatic statistic update is enabled or not?
What are system databases in ms sql server?
What are the differences between DDL, DML and DCL in SQL?
Do you know what is recursion? Is it possible for a stored procedure to call itself or recursive stored procedure?
Find first and last day of current month in sql server
Do you know what is normalization of database? What are its benefits?
What is the maximum row of a size?
What is the security model used in sql server 2005?
What are the Advantages of using CTE in sql server?
What is coalesce and check constraint in sql server?