how to find nth highest salary
Answer Posted / jaishree singh
select emp_name,salary from
(select emp_name,salary, row_number() over (order by salary)
rownumber from employee) E
where E.rownumber = 3
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is data source view or dsv? : sql server analysis services, ssas
How secure is sql server database?
Can two different columns be merged into single column? Show practically?
In one interview...interviewer ask me question pleas tell me sql server architecture.. can any body tell me the sql server architecture with digram
What is sql server database?
What are the types of stored procedures in an sql server?
Explain what are various ways to enhance the ssrs report?
What is the full form of dql?
Where are SQL server users names and passwords are stored in sql server?
How many types of stored procedures are there in sql server?
How to configure odbc dsn with different port numbers?
What new changes are being made in SQL Server?
How to make conditional sum in ssrs?
What is trigger explain with program?
What are different type of Collation Sensitivity?