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 is a synonym for manipulation?
What is subquery explain with example?
How to select all columns of all rows from a table with a select statement in ms sql server?
Can we perform backup restore operation on tempdb?
Is sql server implemented as a service or an application? : Sql server database administration
How many types of triggers are there?
How to find out the list schema name and table name for the database?
What are commonly used odbc functions in php?
Explain what are partitioned views and distributed partitioned views?
State the difference between union and union all?
What is use of attribute hierarchy ordered ? : sql server analysis services, ssas
What are the different types of cursor?
What is sql sandbox in sql server?
What do you mean by normalisation?
How to name query output columns in ms sql server?