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
How can you load multi line records? : aql loader
What is difference between group by and partition by?
How to rename a column in the output of sql query?
What is the difference between rename and alias?
Can we update views in sql?
Can we insert in sql function?
Can we join tables without foreign key?
What is data manipulation language?
What is the mutating table and constraining table?
Why primary key is required?
What is relationship? How many types of relationship are there?
What is primary key sql?
Is postgresql a server?
How can I tell if sql is running?
What are sql*plus environment variables?