How to get employee name from employee table which is the
fiveth highest salary of the table
Answer Posted / vijay
select min(salary) from (select rownum r,e.* from employees e order by salary desc) where rownum<=5;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Is sql a backend language?
Explain the methods used to protect source code of pl/sql.
List the different type of joins?
What is execute immediate?
Enlist the advantages of sql.
Can we insert delete data in view?
Why do we go for stored procedures?
What is primary key and foreign key with example?
what is the difference between $message and $$message? : Sql dba
What is trigger in sql and its types?
How do I view tables in sql developer?
what is an execution plan? When would you use it? How would you view the execution plan? : Sql dba
How can I get the number of records affected by a stored procedure?
Why truncate is used in sql?
What action do you have to perform before retrieving data from the next result set of a stored procedure ?