How to get employee name from employee table which is the
fiveth highest salary of the table
Answer Posted / ashwin
Hi, you can use following query.
select ename,sal from(select ename,sal from emp order by sal
desc)where rownum=5;
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
What is the process of debugging?
Does user triggers have entry for trigger with compilation errors?
how does a local variable is defined using t-sql? : Transact sql
Why use stored procedures?
What is t-sql? : Transact sql
What is nosql vs sql?
Does view contain data?
What is %type in pl sql?
How do you sort in sql?
What is query syntax?
Does inner join remove duplicates?
What are views in sql?
What is right join in sql?
what is commit? : Sql dba
Which are the different character-manipulation functions in sql?