how to find nth highest salary
Answer Posted / saurabh
select max(salary) from Employee where salary not in (
select top 5 Salary from ( select distinct Salary from
Employee order by Salary desc))
Is This Answer Correct ? | 0 Yes | 11 No |
Post New Answer View All Answers
What do you mean by an execution plan?
What is difference between clustered and non clustered index?
Explain nested stored procedure. Syntax and an example for create nested stored procedure?
What are types of subqueries?
What are the five major components of a dbms?
Define constraints and give an example of their use?
Why truncate is ddl?
State the difference between union and union all?
What is always encrypted?
How to list all login names on the ms sql server?
What is triggers in ms sql server?
Which language is supported by sql server?
How will you monitor replication activity and performance? What privilege do you need to use replication monitor? : sql server replication
Explain activity monitors
How to rename an existing column with the "sp_rename" stored procedure in ms sql server?