how to find nth highest salary
Answer Posted / kavitha. r
select top 1 salary from employee where salary in (select
top n salary from employee order by salary desc) order by
salary desc
| Is This Answer Correct ? | 12 Yes | 40 No |
Post New Answer View All Answers
What are the restrictions applicable while creating views? : SQL Server Architecture
How to create an multi-statement table-valued function?
Tell me the difference between clustered and non-clustered index?
Explain what you mean by 3 tier architecture.
How do I make a resultset scrollable?
What happens if null values are involved in arithmetic operations?
Can coalesce return null?
What is the difference between Triggers and Stored Procedure?
What are translations and its use? : sql server analysis services, ssas
What do you understand by physical_only option in dbcc checkdb?
What is equi join with example?
Tell me about joins in database system and explain each in detail.
How to get the definition of a stored procedure back?
Explain how to integrate the ssrs reports in application?
How do you create a clustered index?