i want department wise maxmum salary and empolyee name
Answer Posted / ajaikumar
Select e.ename, d.deptname, e.sal
from emp e, dept d
where
e.deptno = d.deptno
and
e.sal IN (
select max(sal) from emp
group by deptno
)
| Is This Answer Correct ? | 6 Yes | 5 No |
Post New Answer View All Answers
What are the various oracle database objects?
Why does for update in oracle 8 cause an ora-01002 error?
How to create additional tablespaces for an new database?
Is insert autocommit in oracle?
How to upsert (update or insert into a table)?
15. Display the item_cost and then truncate it to the nearest hundred, ten, unit, tenth and hundredth.
Explain an extent?
How to connect to a local oracle 10g xe server?
Is oracle a programming language?
What suggestions do you have to reduce the network traffic?
What happens if recursive calls get out of control?
How can we find out the duplicate values in an oracle table?
How do we create privileges in oracle?
What are the ansi data types supported in oracle?
How to call a sub procedure?