How to Select second Maximum salary in a Table ?

Answers were Sorted based on User's Feedback



How to Select second Maximum salary in a Table ?..

Answer / guest

select max(sal) from Table
where sal not in(select max(sal) from Table);

Is This Answer Correct ?    20 Yes 3 No

How to Select second Maximum salary in a Table ?..

Answer / tanuj tewari

select max(sal) from table_name where sal<(select max(sal)
from table_name);

Is This Answer Correct ?    15 Yes 3 No

How to Select second Maximum salary in a Table ?..

Answer / sunil

select max(sal) from table_name where
sal<(select max(sal) from table_name);

or

select sal from(select sal,dense_rank() over(order by sal)
as rnk from table_name) where rnk=2;

Is This Answer Correct ?    7 Yes 4 No

How to Select second Maximum salary in a Table ?..

Answer / abhijit

select max(sal) from table_name where
sal<(select max(sal) from table_name);

or

select sal from(select sal,dense_rank() over(order by sal
desc)
as rnk from table_name) where rnk=2;

Is This Answer Correct ?    3 Yes 1 No

How to Select second Maximum salary in a Table ?..

Answer / ranjini

select max(salary) from employee not exists (select
max(salary)from employee)

Is This Answer Correct ?    0 Yes 1 No

How to Select second Maximum salary in a Table ?..

Answer / arpit sachan

select min(Emp_Sal)from Employee_Test where Emp_sal in(select distinct top(2) Emp_Sal from Employee_Test order by Emp_Sal desc)

Is This Answer Correct ?    0 Yes 1 No

How to Select second Maximum salary in a Table ?..

Answer / ranjith

select salary from table order by salaray desc limit 1,1

Is This Answer Correct ?    0 Yes 1 No

How to Select second Maximum salary in a Table ?..

Answer / kuldeep singh

select max(sal) from emp where sal not in (select top2 sal from emp order by sal desc)

Is This Answer Correct ?    1 Yes 3 No

How to Select second Maximum salary in a Table ?..

Answer / sephali

select sal, rownum
from (select sal from table
order by sal desc)
where rownum=2

Is This Answer Correct ?    0 Yes 2 No

How to Select second Maximum salary in a Table ?..

Answer / 9896012055

what will be the answer for this question

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More Oracle General Interview Questions

Give the different types of rollback segments.

0 Answers  


How to put more than 1000 values into an oracle in clause?

0 Answers  


I need to get the values of the previous quarter.how to do this?eg: if my cuurent month is may i need to get the datas of the month jan,feb,march.Can it be done in oracle.I tried with date function q but for the month jan its not retriving the previous quarter(oct-dec).how to solve this.plpz anyone help me?

2 Answers   Philips,


Define the SGA and: How you would configure SGA for a mid-sized OLTP environment? What is involved in tuning the SGA?

0 Answers  


What is hash cluster in oracle?

0 Answers  






Why does for update in oracle 8 cause an ora-01002 error?

0 Answers  


Please explain oracle left join with an example?

0 Answers  


How to display row numbers with the records?

0 Answers  


What is the difference between truncate & delete command?

0 Answers  


Explain the use of owner option in exp command.

0 Answers  


What is a table index in oracle?

0 Answers  


Differentiate between translate and replace?

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)