how to find nth highest salary
Answer Posted / jiten
select top 1 salary from employee where salary in (select
top n salary from employee order by salary desc)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what is bit datatype? : Sql server database administration
What is an index in a database?
Explain what are the restrictions while creating batches in sql server?
What are information schema views?
How to add code to the existing article (using improve article)?
Can sql servers link to other servers like oracle?
What is a non clustered primary key?
How you can get the list of largest tables in a database?
What does indexation mean?
What is pivot and unpivot?
How to use column default values in insert statements in ms sql server?
What will be query used to get the list of triggers in a database?
What are page splits? : SQL Server Architecture
How much does sql server 2016 cost?
Can we use having clause without group by?