Display those managers salary greater than the average
salary of his employees?(Based on oracle standard Emp table)
Answer Posted / 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 |
Post New Answer View All Answers
What is analyze command used for?
Whats the benefit of dbms_stats over analyze?
What is BBED in Oracle?
What is a user account in oracle?
What is blob datatype?
What is a nested table and how is it different from a normal table?
What is oracle database client?
Why does Oracle not permit the use of PCTUSED with indexes?
Give syntax for SQL and ORACLE joins.
How to define a variable of a specific record type?
How to connect to a local oracle 10g xe server?
How do I recompile a procedure in oracle?
Explain the use of owner option in exp command.
What is Virtual Private Database in Oracle?
Why use resource manager in Oracle?