write query for fourth maximum salary from employee table
Answer Posted / ilgian
select min(salary)
from (
select top 4 *
from employees
order by salary desc
) as a
| Is This Answer Correct ? | 24 Yes | 7 No |
Post New Answer View All Answers
Explain microsoft sql server functions?
Can two different columns be merged into single column? Show practically?
explain different types of backups avaialabe in sql server? Given a particular scenario, how would you go about choosing a backup plan? : Sql server database administration
What is sql profiler. What are the default templates with it? : sql server database administration
Where are stored procedures in sql server?
What is sub query and its properties?
What is recompile sql server?
How to add a new dsn with the odbc driver for sql server?
Do you know what is blocking?
List down some advantages of sql stored procedure?
What are different types of raid configurations? : SQL Server Architecture
What is the stuff?
Give a example to search fr a string in all stored procedure in sql server.
What is difference between views and stored procedures?
How do I schedule a sql server profiler trace?