i want department wise maxmum salary and empolyee name
Answer Posted / sanjaya
select distinct deptno, max(sal)over ( partition by deptno order by deptno) from emp;
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is a proxy class?
What is a system tablespace and when it is created?
How to delete all rows a table in oracle?
Can objects of the same schema reside in different tablespace?
Which dictionary view(s) would you first look at to understand or get a high-level idea of a given Advanced Replication environment?
What is proxy method?
what is normalisation?what are its uses?
List the types of joins used in writing subqueries?
How to import one table back from a dump file?
11. Display the client number and name and the client number and name of the person who referred that client.
How to connect asp pages to oracle servers?
Can we create trigger on materialized view in oracle?
What are the oracle built-in data types?
How to get maxsal , minsal, ename department wise in single query
Explain integrity constraint?