how to find nth highest salary
Answer Posted / pandian
select top 1 salary from (select distinct top 9 salary from
EmpMaster order by salary desc)a
| Is This Answer Correct ? | 65 Yes | 88 No |
Post New Answer View All Answers
List out the difference between union and union all in sql server?
What is sql or structured query language?
What is set nocount on?
What is clustered index
If you're given a raw data table, how would perform etl (extract, transform, load) with sql to obtain the data in a desired format?
What are distributed partitioned views?
Which sql server table is used to hold the stored procedure scripts?
What command is used to create a database in the sql server and how?
Write an SQL query to obtain the 2nd highest salary.
Does partitioning improve performance sql server?
What are Spatial data types in SQL Server 2008
How to execute stored procedure and set temp table in sql server?
Define Unique Key?
What are the advantages of using third-party tools?
Can binary strings be used in arithmetical operations?