How to get employee name from employee table which is the
fiveth highest salary of the table
Answer Posted / shashidhar
SELECT EMP_NAME (SELECT ROWNUM R,B.* FROM employee B ORDER
BY SALARY DESC) A
WHERE A.R = 5
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
How do I count rows in sql?
What is anonymous block in sql?
Which is faster count (*) or count 1?
what is dbms? : Sql dba
Can we use two order by clause in query?
What is the best sql course?
Can we use having without group by in sql?
How do I save a sql query?
Are left and right joins the same?
What are pl sql procedures?
What are sql*plus environment variables?
Which is faster view or stored procedure?
how to rename an existing column in a table? : Sql dba
How exception handling is done in advance pl/sql?
Mention what does plv msg allows you to do?