How to get employee name from employee table which is the
fiveth highest salary of the table
Answer Posted / kishore
select salery from (
(select salery ,rownum as num from
(select salery from employees order by salery desc)
where rownum <= 5 ))
where num = 5;
| Is This Answer Correct ? | 18 Yes | 4 No |
Post New Answer View All Answers
Can we want to pass a parameter payroll_id to this external pl/sql function, how do we do it?
what is bdb (berkeleydb)? : Sql dba
What is sqlite format?
What version is sql?
how to return query output in html format? : Sql dba
How do I remove duplicates in two columns?
How do you use collections in procedure to return the resultset?
which operator is used in query for pattern matching? : Sql dba
What are local and global Indexes and where they are useful.
Is left join same as join?
What is cursor explain with example?
What is sql in java?
what are the limitations of mysql in comparison of oracle? Mysql vs. Oracle. : Sql dba
Is it possible to include an insert statement on the same table to which the trigger is assigned?
What is the maximum size of sqlite database?