how to find the fifth highest salary?
Answer Posted / saraswathi muthuraman
SQL> select * from emp_test order by sal desc;
1003 20010 11
1001 10000 11
1001 10000 11
1002 100 11
1004 99 11
1005 50 11
1006 25 11
SQL> select * from (select emp_no,dep_no,sal,rank() over
(order by sal desc) as rank_list from emp_test) where
rank_list =5;
1004 11 99 5
| Is This Answer Correct ? | 5 Yes | 5 No |
Post New Answer View All Answers
What is a business logic layer?
What is temp db database? : sql server architect
What is Relationship set?
What is the meaning of 3 tier?
what is the difference between LENGTH AND SIZE?
What is internal database?
How does Tuple-oriented relational calculus differ from domain-oriented relational calculus
What is DDL (Data Definition Language)?
What is an Entity?
Can we use commit inside the trigger? If not then how can we save the transaction made by the trigger?
What is 2 tier 3 tier architecture?
Which part of the RDBMS takes care of the data dictionary? How
What is model database? : sql server architect
What is the Disadvantage in File Processing System?
What is System R? What are its two major subsystems?