how to select second mauximum value in a given table under salary column
Answer Posted / u.radha
SELECT * FROM (SELECT ENAME,SAL,DENSE_RANK() OVER(ORDER BY SAL DESC) RN FROM EMP) WHERE RN = 2;
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How to convert raw data type into text in oracle? Explain
What is private procedure oracle?
What is redo log?
What is the difference between translate and replace in oracle?
Explain about achiever in sql?
What are triggers in oracle?
What are the attributes of cursor?
What is the difference between postgresql and oracle?
What is user managed backup in Oracle?
What is not equal to in oracle?
What is the sid in oracle?
How to connect to a local oracle 10g xe server?
what is the difference between substr and instr function in oracle?
What are the different windows events activated at runtime ?
What is a package ? What are the advantages of package ?