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

After using set unused can we enable the column again to use? Please give me some answers....

1 Answers   Maveric,


Explain oracle 12c new features for developers?

0 Answers  


how to we delete a row using varray

3 Answers   CTC,


How do you recover a datafile that has not been physically been backed up since its creation and has been deleted. Provide syntax example.

1 Answers  


Why does oracle 9i treat an empty string as null?

0 Answers  


Draw E-R diagram for many to many relationship ?

0 Answers   Keane India Ltd,


Is primary key = unique key,not null? If yes,please explain IF No,please explain

8 Answers   Genpact,


how do we code triggers , store procedure , Performance tuning and indexing in a Java Project? Pls kindly get me the perfect answer with the code for each....thank you in advance............pls any body kindly help me soon as possible....

0 Answers  


How can you use check constraints for self referential integrity?

0 Answers  


if you ctreate table identity

0 Answers  


Explain alias?

0 Answers  


What is a user role in oracle?

0 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1808)
  • 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)