find out the third highest salary?
Answer Posted / dilip tiwari
THis is for Oracle
SELECT * FROM emp
(SELECT empname,Salary,dense_rank() OVER(ORDER BY salary
DESC) AS ranking FROM emp)
WHERE ranking = 3
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is oracle host variable?
What is varray?
How to connect to the server with user account: sys?
What are a collation and state the different types of collation sensitivity?
material view and view disadvantages?
Can select statements be used on views in oracle?
Define oracle database
Explain what are the uses of rollback segment?
What are the oracle differences between nvl and coalesce
What is java oracle used for?
Explain a synonym?
What is a cursor and what are the steps need to be taken?
Explain the dml?
What is transaction control statement and how many types of transaction control statement in Oracle?
How to create additional tablespaces for an new database?