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
What is the process of copying data from table a to table b?
What is the difference between sql and isql*plus?
What does the file extension accdb stand for?
What is the use of pl/sql table?
what is a primary key? : Sql dba
How many joins can you have in sql?
What is the use of procedures?
Can we insert data into materialized view?
How many sql statements are used? Define them.
What is a .db file?
Can sql function call stored procedure?
Mention what is the use of function "module procedure" in pl/sql?
how to use like conditions? : Sql dba
what are the 'mysql' command line arguments? : Sql dba
What is foreign key and example?