i want department wise maxmum salary and empolyee name
Answer Posted / sanjay pradhan
select ename,sal,deptno from emp where (deptno,sal) in
(select deptno,max(sal) from emp group by deptno);
| Is This Answer Correct ? | 15 Yes | 4 No |
Post New Answer View All Answers
How to write numeric literals in oracle?
what is the scenario where you take the database to NoArchivelog mode?
 What are the oracle DML commands possible through an update strategy?
Explain what are clusters?
How do you find current date and time in oracle?
Are truncate and delete commands same? If so why?
How does oracle handle read consistency?
What is a table index?
How to drop an index in oracle?
Is it possible to insert comments into sql statements return in the data model editor ?
What is an oracle user role?
11. Display the client number and name and the client number and name of the person who referred that client.
What is oracle sid?
Explain the characteristics of oracle dba?
What is materialized view in Oracle?