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
how would you store your query in an SSRS report or a Database server?
How to create percentile function?
How do I schedule a sql server profiler trace?
What is updatable resultset?
What is a coalesce function?
How can delete duplicate records in cte in sql server?
What is the difference between a view and a stored procedure?
Explain a checkpoint?
Give an example of SQL injection attack ?
How to delete an existing row with delete statements in ms sql server?
What is the need for group functions in sql?
What are the events recorded in a transaction log?
How to create an multi-statement table-valued function?
What is bcnf normalization form?
What is always encrypted?