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

How many types of cluster table in Oracle?

0 Answers   MCN Solutions,


What is oracle datasource?

0 Answers  


Explain the use of online redo log files in oracle.

0 Answers  


How to Identify the previously inserted/updated records in already populated table.

0 Answers  


What are the uses of synonyms?

0 Answers  






What is logical backup in oracle?

0 Answers  


What are the Limitations of a CHECK Constraint ?

5 Answers  


Explain an exception and its types?

0 Answers  


query optmization techniques and quwry analyser+projects+ppts

0 Answers  


What do database buffers contain?

0 Answers  


What are the factors causing the reparsing of SQL statements in SGA?

1 Answers  


Explain the dml?

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)