Display those managers salary greater than the average
salary of his employees?(Based on oracle standard Emp table)
Answer Posted / 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 |
Post New Answer View All Answers
Explain about achiever in sql?
does the query needs a hint to access a materialized view?
How to select some rows from a table in oracle?
Give syntax for SQL and ORACLE joins.
How many types of segments in Oracle?
Use of an integrity constraint is better to validate data. Explain
What is oracle analytical function?
What is the fastest query method to fetch data from the table?
How to delete all rows a table in oracle?
Explain oracle instance.
How to drop a stored function?
what are archived logs?
What is coalesce function?
How does propagation differ between Advanced Replication and Snapshot Replication (read-only)?
Can we call procedure inside function in oracle?