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 an Extension of entity type?
What do you mean by flat file database?
What does n tier mean?
What is database architecture? : sql server architect
What is master database? : sql server architect
State about the security aspects of stored procedures?
What is model database? : sql server architect
What is difference between two tier and three tier?
What is the meaning of 3 tier?
Explain about the difficulties faced by the database developer in implementing pre compiled statements?
What are pages and extents? : sql server architect
What is durability in DBMS?
What is RDBMS KERNEL?
What is the difference between 3 tier and 3 layer architecture?
How many types of stored procedure?