Display those managers salary greater than the average
salary of his employees?(Based on oracle standard Emp table)
Answer Posted / 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 |
Post New Answer View All Answers
How to convert times to characters in oracle?
What is data type in oracle?
Why use resource manager in Oracle?
How do you find current date and time in oracle?
What is a private synonym?
What is a table in oracle?
What is the maximum number of triggers that can be applied to a single table?
How to connect to oracle using service name instead of sid?
Does oracle partitioning improve performance?
What is backup in Oracle?
How to load data from external tables to regular tables?
What is the difference between a hot backup and a cold backup in oracle?
How to define an external table with a text file?
How to loop through data rows in the implicit cursor?
What is clustered table in Oracle?