How to find 6th highest salary from Employee table ?
Answer Posted / saravakumar
SELECT TOP 1 salary FROM (SELECT DISTINCT TOP 6 salary FROM
employee ORDER BY salary DESC) a ORDER BY salary
| Is This Answer Correct ? | 30 Yes | 8 No |
Post New Answer View All Answers
What is set nocount on and what is set nocount off?
What is snapshot report?
How do we Backup SQL Azure Data?
Your table has a large character field there are queries that use this field in their search clause what should you do?
How to turn off warning messages during php execution?
what are the different stages of Report Processing?
How many replicas are maintained for each SQL Azure database?
Can you index views?
Explain what is sql server english query?
Explain Geometry datatype in sql server 2008 with example
what is the difference between count(*) and count(1) ?
How you can add messages to the nt event log from within a stored procedure?
What is a result set object returned by mssql_query()?
Can we add a cpu to sql server?
How to use values from other tables in update statements in ms sql server?