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
What are the differences between having and where clause.
What is self contained multi valued query?
If I delete a template from the list in sql studio, will it be deleted from the hard disk? : sql server management studio
What is the impact on other user sessions when creating indexes?
Explain user defined views?
How to change server name in sql server?
How to skip remaining statements in a loop block using continue statements?
What are commonly used mssql functions in php?
What is postgresql server?
How do I find the port number for sql server?
How do you create a data source?
What are various ways to enhance the ssrs report?
What is report server project?
John exports information periodically from a microsoft sql server database to an oracle database what is the best way to do this?
Mention the different types of replication in sql server.