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 memory advisor in Oracle?
How to define a specific record type?
while i take backup using ibm tsm the following errors occurred: rman-03009 ora-19513 ora-27206 ora-19502 ora-27030 ora-ora19511
A table t is there.If you perform insert ,update and delete then the trigger will fire.What is the minimum no of trigger required for a table.
What do you mean by a database transaction & what all tcl statements are available in oracle?
What is MTTR advisor in Oracle?
What is the order of defining local variables and sub procedures/functions?
How to write a query with an inner join in oracle?
What is merge statement used for?
What are the different windows events activated at runtime ?
What are nested tables?
What is columnar storage what is the advantage?
How to execute a stored procedure in oracle?
Can we call procedure inside function in oracle?
How to start an oracle instance?