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 difference between inner join and join?
How to provide login information for a new odbc dsn?
How to list all field names in the result set using mssql_field_name()?
Does sql server 2000 full-text search support clustering?
What are the types of table?
Write a sql query to sort on different column name according to the parameters passed in the function?
How does SSIS(Sql Server Integration Services) deffer from DTS(Data Transformation Services)?
Why transaction is important?
What are the advantages of log shipping?
What does this statement do @@rowcount?
How are the exceptions handled in sql server programming?
How to create a new schema in a database?
What is Command line parameters in PLSQL.?
Explain the xml support sql server extends?
How to override dml statements with triggers?