HOW TO DISPLAY MAXIMUM SALARIES FROM EMP DEPARTMENT VISE ALONG
WITH DEPARTMENT NAMES? E.g EMP,DEPT
Answer Posted / naveen
SELECT D.DEPTNO,D.DNAME,MAX(SAL) FROM EMP E,DEPT D WHERE
D.DEPTNO=E.DEPTNO GROUP BY D.DEPTNO,D.DNAME;
| Is This Answer Correct ? | 17 Yes | 1 No |
Post New Answer View All Answers
definition of cluster and non-clustered index?
How to select an oracle system id (sid)?
What is a directory object?
What is a parameter file in oracle?
What is a initialization parameter file in oracle?
what's query optimization and without use of IN AND Exist can we get another way data from query
Explain oracle’s server parameter file.
What is dual table oracle?
how to join query for one source type is oracle another source type is sql server ?
what is the difference between data migration and production migration.
How to delete a column in an existing table?
What is a snapshot in oracle database?
What is literal?
What is the difference between Delete, Truncate and Drop in Oracle?
Difference between inner join vs where ?