how to select second mauximum value in a given table under salary column

Answers were Sorted based on User's Feedback



how to select second mauximum value in a given table under salary column..

Answer / jai

SELECT MAX(SALARY) FROM EMPLOYEE
WHERE SALARY NOT IN(SELECT MAX(SALARY) FROM EMPLOYEE)

Is This Answer Correct ?    27 Yes 2 No

how to select second mauximum value in a given table under salary column..

Answer / sonthosh

SELECT * FROM
(
SELECT
NAME
,SALARY
,RANK() OVER (order by salary desc) RANK
FROM EMPLOYEE)
WHERE RANK = 2

Is This Answer Correct ?    7 Yes 4 No

how to select second mauximum value in a given table under salary column..

Answer / utkal

Select distinct(E1.Salary) from EMPLOYEE E1 where 2 =
(Select Count(distinct(E2.Salary)) from Employe E2 where
E1.Salary <= E2.Salary).

Here n=2,

Similarily we can find the 5th highest salary etc...

Is This Answer Correct ?    2 Yes 0 No

how to select second mauximum value in a given table under salary column..

Answer / 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

how to select second mauximum value in a given table under salary column..

Answer / shri

select min(sal) from (select * from emp order by sal desc) where rownum<3

IN Informatica also use the query in source qualifier's
"sql override". which will reduce d no. of t/r in d mapping

Is This Answer Correct ?    3 Yes 3 No

how to select second mauximum value in a given table under salary column..

Answer / ramesh

create table emp(sal number(5,2);

Is This Answer Correct ?    1 Yes 19 No

Post New Answer

More Oracle General Interview Questions

How to Remove the 3rd highest salary person record from table?

9 Answers   HCL, IBM,


What are advantages fo Stored Procedures?

1 Answers  


what is the difference between functional dependecy and multilevel dependency?

0 Answers   Oracle,


Explain oracle’s system global area (sga).

0 Answers  


Explain the difference between a procedure and a function?

0 Answers  






What are the ansi data types supported in oracle?

0 Answers  


How to drop an existing table in oracle?

0 Answers  


There are three tables : E : EID,ENAME D : DID,DNAME empdept : eid, did select the employees who doesn't belong to any dep

4 Answers   Microsoft,


How to convert numbers to characters in oracle?

0 Answers  


What is forall Statement ?

2 Answers   Thermotech,


What is bulk load in oracle?

0 Answers  


How do I escape a reserved word in oracle?

0 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)