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
How to define a data source name (dsn) in odbc manager?
What is an oracle wallet?
How do I connect to oracle database?
Can we connect to ORACLE db using Windows Authentication?
What is a read write transaction in oracle?
How do I know if oracle is installed on windows?
How to connect ms access to oracle servers?
How to convert character types to numeric types?
Give syntax for SQL and ORACLE joins.
What is the usage of analyze command in oracle?
How do I use os authentication with weblogic jdriver for oracle and connection pools?
State any two functions of oracle?
Explain the use of inctype option in exp command.
What is the oracle implicit cursor?
Is there any way to find out when one specific table/view/M-view is used last time. i.e. when one specific object is used in any SELECT statement.