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

why pl sql doesn't support retrieving multiple records

1 Answers   Mphasis,


How to count duplicated values in a column in oracle?

0 Answers  


How to connect to a remote server?

0 Answers  


what is Single Byte Overhead...?

0 Answers  


How to get a list of all tables in the database?

1 Answers  






What are the limitations oracle database 10g xe?

0 Answers  


what is the difference between restoring and recovering?

0 Answers   MCN Solutions,


what is candidate key & super key

1 Answers  


How to create a new table in your schema?

0 Answers  


How to open a cursor variable?

0 Answers  


what are indexes..how many types of index's are there and what are they?

7 Answers   Green Info Solutions, TCS,


What is sharded cluster?

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)