how will I find the first 5 highest salaried employees in
each dept in oracle.

Answers were Sorted based on User's Feedback



how will I find the first 5 highest salaried employees in each dept in oracle...

Answer / sunil panghal

select rownum as row_id,salary from (select salary from
employees order by salary) where rownum <6;

Is This Answer Correct ?    1 Yes 2 No

how will I find the first 5 highest salaried employees in each dept in oracle...

Answer / rammohan

select rownum as row_id,sal from (select sal from
emp order by sal desc) where rownum <6;

Is This Answer Correct ?    1 Yes 2 No

how will I find the first 5 highest salaried employees in each dept in oracle...

Answer / uttam

select sal from (SELECT distinct sal FROM emp order by sal
desc)
where rownum <6

Is This Answer Correct ?    13 Yes 15 No

how will I find the first 5 highest salaried employees in each dept in oracle...

Answer / manjusure@yahoo.co.in

select * from emp e where 5> (select count(max(sal)) from emp
where e.deptno=deptno and sal>e.sal group by sal);

Is This Answer Correct ?    4 Yes 6 No

how will I find the first 5 highest salaried employees in each dept in oracle...

Answer / mihir nasikkar

select *
from employee X
where salary in (select top 5 salary
from employee
where dept = X.dept
order by salary desc)
order by dept, salary desc

Is This Answer Correct ?    2 Yes 4 No

how will I find the first 5 highest salaried employees in each dept in oracle...

Answer / mangesh

SELECT * FROM (SELECT * FROM EMP ORDER BY SALARY desc) WHERE ROWNUM < 6;

Is This Answer Correct ?    0 Yes 2 No

how will I find the first 5 highest salaried employees in each dept in oracle...

Answer / md valiyullah

select max(sal)-5 from emp;

Is This Answer Correct ?    2 Yes 6 No

how will I find the first 5 highest salaried employees in each dept in oracle...

Answer / md valiyullah

select max(sal)-5 from emp where dept = 'sale'
union all
select max(sal)-5 from emp where dept = 'purchase'

Is This Answer Correct ?    0 Yes 4 No

how will I find the first 5 highest salaried employees in each dept in oracle...

Answer / dhanalakshmi

select salary
from employee
where rownum<6
group by deptno,salary
order by salary desc

Is This Answer Correct ?    0 Yes 9 No

how will I find the first 5 highest salaried employees in each dept in oracle...

Answer / tytry

ytytry

Is This Answer Correct ?    0 Yes 9 No

Post New Answer

More Oracle General Interview Questions

what are the mandortary parameters required for cuncurrent program definition in oracle apps R12?

1 Answers   Arrow Electronics,


Can we create trigger on view in oracle?

1 Answers  


What are the types of trigger in oracle?

0 Answers  


What are the ways tablespaces can be managed and how do they differ?

0 Answers  


am completed mca2011 how get certification in oracle

1 Answers  






How to connect to oracle using service name instead of sid?

0 Answers  


how to find full database size

1 Answers   BirlaSoft, Consultancy,


What is a lookup table in oracle?

0 Answers  


How to define an oracle sub procedure?

0 Answers  


How to calculate date and time differences in oracle?

0 Answers  


How do we switch from init.ora file to asp file?

2 Answers  


What is the maximum number of triggers that can be applied to a single table?

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)