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 the usage of sign function?
What is collation sensitivity?
How to start sql server browser service?
How can I tell if sql server is 32 or 64 bit?
What are dml triggers and types of dml triggers?
What is a transact-sql statement?
explain different levels of normalization? : Sql server database administration
How to create new table with "create table" statements?
Difference between aggregate functions of sql?
How to delete duplicate rows?
What is 1nf 2nf and 3nf?
What is the difference between substr and charindex in the sql server?
Can you create a logon trigger in sql server 2005 express edition?
How can you control the amount of free space in your index pages?
How to list all objects in a given schema?