Query to get max and second max in oracle in one query ?
Answers were Sorted based on User's Feedback
Answer / braulio
-- that's it
select * from
(select max(salary) from salary)
where rownum = 2
Is This Answer Correct ? | 0 Yes | 1 No |
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 |
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 |
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 |
Describe varray?
How to commit the current transaction in oracle?
what are steps for interface? where is exchange rate defined in which table?
who is the father of oracle and send chodd rules
how to retrieve 1st and last row of table without using group functions??
Why is oracle database so popular?
What is a select query statement in oracle?
What is an oracle tablespace?
What is the difference between RBBMS & DBMS?
What are data pump export and import modes?
what is the dual table in oracle?
What is ceil and floor in oracle?