Display those managers salary greater than the average
salary of his employees?(Based on oracle standard Emp table)

Answers were Sorted based on User's Feedback



Display those managers salary greater than the average salary of his employees?(Based on oracle sta..

Answer / chakradhar

select ename,sal,mgr
from emp mgr
where sal > (select avg(sal)
from emp emp
where emp.mgr = mgr.empno)

Is This Answer Correct ?    10 Yes 2 No

Display those managers salary greater than the average salary of his employees?(Based on oracle sta..

Answer / sehajshangari1235

select distinct m.ename from emp e,emp m
where m.sal>(select avg(e.sal) from emp e,emp m where
e.mgr=m.empno);


call back for more
7204719446

Is This Answer Correct ?    5 Yes 0 No

Display those managers salary greater than the average salary of his employees?(Based on oracle sta..

Answer / pradeep

select ename,sal,mgr
from emp a
where sal > (select avg(sal)
from emp b
where b.mgr = a.mgr)

Is This Answer Correct ?    10 Yes 6 No

Display those managers salary greater than the average salary of his employees?(Based on oracle sta..

Answer / saiprasanna

select ename,empno from emp a where sal>(select avg(sal) from emp b where mgr=a.empno);

Is This Answer Correct ?    1 Yes 3 No

Display those managers salary greater than the average salary of his employees?(Based on oracle sta..

Answer / lal ajith kumara

select distinct (first_name)
from employees
where employee_id in (select manager_id
from employees
where salary > (select avg(salary) from
employees))

Is This Answer Correct ?    1 Yes 3 No

Display those managers salary greater than the average salary of his employees?(Based on oracle sta..

Answer / murali

select m.ename from emp e,emp m where e.mgr=m.empno and
e.sal<m.sal

Is This Answer Correct ?    0 Yes 4 No

Post New Answer

More Oracle General Interview Questions

What is recovery manager(rman) backup in Oracle?

0 Answers   MCN Solutions,


What are triggers in oracle?

0 Answers  


What is Data Block ?

2 Answers  


Where are the settings stored for each instance in oracle?

0 Answers  


How to grant create session privilege to a user in oracle?

0 Answers  






How will you write a query to get a 5th rank student from a table student_report?

0 Answers  


How do I manually create a database in oracle?

0 Answers  


Who i will insert 1 lacks record in a Database table

4 Answers   TCS,


Explain the use of ignore option in imp command.

0 Answers  


What privilege is needed for a user to create views in oracle?

0 Answers  


How i can handle exception in large code like 1000 line without distrubing the code or without exception handler sction?

0 Answers   Zensar,


What happens if you set the sga too low in oracle?

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)