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 to write a query with an inner join in ms sql server?
What is proper subset of candidate key?
in a table is b in column k (manikanta,sivananda,muralidhar) i want result like (mnikanta,sivnanda,murlidhar) please slove it
How to scale out a federation by Sql statement?
What is the partitioning method?
Explain how you can deploy an SSRS report?
Equi join and non equi join is possible with sql server?
Do you know what is fill factor and pad index?
How to insert data into an existing table?
What is the tcp/ip port on which sql server runs?
Does a specific recovery model need to be used for a replicated database? : sql server replication
What is the function of sql server agent windows service?
What guidelines should be followed to help minimize deadlocks?
Explain what is raid and what are different types of raid levels?
What are scalar functions in sql?