how to find nth highest salary
Answer Posted / vijay
select top 1 sal
from
(select top 3 sal
from emp
order by sal desc )sub
order by sal
| Is This Answer Correct ? | 12 Yes | 24 No |
Post New Answer View All Answers
What are trace flags?
Introduction of rollup clause using sum and group by clause?
Which data type columns are the best candidates for full-text indexing?
What is the difference between set and select?
How can i Relate Tables in SSIS
Are null values the same as that of zero or a blank space?
What is sql server database?
What is data source document?
How can I tell if sql server is 32 or 64 bit?
When columns are added to existing tables, what do they initially contain?
What is change data capture (cdc) in sql server 2008?
How you can get the list of largest tables in a database?
What is a periodical index?
What do you understand by the analysis services in sql server?
Stored Procedure returns data from multiple tables. How to access it in your ASP.Net code?