Query to get max and second max in oracle in one query ?

Answers were Sorted based on User's Feedback



Query to get max and second max in oracle in one query ?..

Answer / braulio

-- that's it

select * from
(select max(salary) from salary)
where rownum = 2

Is This Answer Correct ?    0 Yes 1 No

Query to get max and second max in oracle in one query ?..

Answer / bhamidipati srinivas

select (select max(gross) from employee_dtls),(select max
(gross) as nextmaximum
from employee_dtls where gross<(select max(gross) from
employee_dtls)) from dual

Is This Answer Correct ?    2 Yes 4 No

Query to get max and second max in oracle in one query ?..

Answer / sdfsfsdf

to install .sh files(.exe files)in linux.copy the file
inusr.
open terminal go to usr and type bash ./follwed by file name
(can use tab key)
here.
to unistall java in linux we can use rm command

Is This Answer Correct ?    1 Yes 4 No

Query to get max and second max in oracle in one query ?..

Answer / naveen

select sal from employee where sal >= (select max(sal) from
employee where sal not in (select max(sal) from employee))

Is This Answer Correct ?    7 Yes 14 No

Post New Answer

More Oracle General Interview Questions

Describe varray?

0 Answers  


How to commit the current transaction in oracle?

0 Answers  


what are steps for interface? where is exchange rate defined in which table?

0 Answers  


who is the father of oracle and send chodd rules

4 Answers   ME,


how to retrieve 1st and last row of table without using group functions??

6 Answers  


Why is oracle database so popular?

0 Answers  


What is a select query statement in oracle?

0 Answers  


What is an oracle tablespace?

0 Answers  


What is the difference between RBBMS & DBMS?

4 Answers  


What are data pump export and import modes?

0 Answers  


what is the dual table in oracle?

0 Answers  


What is ceil and floor 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)