Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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 to connect ms access to oracle servers?

0 Answers  


What are the types of synonyms?

1 Answers  


What is Water Mark in Oracle?

7 Answers   Oracle,


What is Java Pool in Oracle?

0 Answers   MCN Solutions,


How to define and use table alias names in oracle?

0 Answers  


What to do if the binary spfile is wrong for the default instance?

0 Answers  


What is an oracle and why it is used?

0 Answers  


If youre unsure in which script a sys or system-owned object is created, but you know its in a script from a specific directory, what UNIX command from that directory structure can you run to find your answer?

0 Answers  


Define 'view' advantage ?

2 Answers   AZTEC, TCS,


How can we force the database to use the user specified rollback segment?

0 Answers  


Q) How to Find Max Date from each Group? (Asked in Infosys (INFI)Interview)

4 Answers   Infosys,


What is oracle server autotrace in oracle?

0 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1803)
  • 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)