How to get employee name from employee table which is the
fiveth highest salary of the table
Answer Posted / mrunali
select name from (select e.*, dense_rank() over (order by salary desc nulls last)as rn from emp e) where rn=5
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is compilation error in pl sql?
What is dense_rank?
How do I tune a sql query?
Is sql pronounced sequel or sql?
What sql database should I use?
What is a composite primary key?
what are the limitations of identity column? : Transact sql
Does view contain data?
What is execute immediate?
how do you control the max size of a heap table? : Sql dba
What is sql constant?
How to change sql*plus system settings?
Is nosql relational?
how to drop an existing view in mysql? : Sql dba
what are the t string functions available in tsql? : Transact sql