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 dynamic proxy?
What are a cluster and non-cluster index?
From the following identify the non schema object: packages, triggers, public synonyms, tables and indexes.
How to view all columns in an existing table?
What are the four Oracle system processes that must always be up and running for the database to be useable?
What is define in oracle?
Compare and contrast between sql and sql server and explain its various functions?
How to resolve the ORA-39133 error in Oracle?
What are the system predefined user roles?
How to execute a stored procedure in oracle?
How do I start tns listener?
Can we convert a date to char in oracle and if so, what would be the syntax?
What happens to the current transaction if the session is killed?
Explain what are clusters?
What are dml statements in oracle?