HOW TO DISPLAY MAXIMUM SALARIES FROM EMP DEPARTMENT VISE ALONG
WITH DEPARTMENT NAMES? E.g EMP,DEPT
Answer Posted / harika
select dname,max(sal) from emp e,dept d
where d.deptno=e.deptno
group by d.deptno;
| Is This Answer Correct ? | 3 Yes | 6 No |
Post New Answer View All Answers
What is the difference between translate and replace in oracle?
What is oracle database 10g express edition?
How do you bind variables in oracle?
What is hash cluster in oracle?
What is instant client oracle?
Explain coalesce function?
What are the predefined tablespaces in a database?
Explain the use of indexes option in imp command.
What is the string concatenation operator in oracle?
How remove data files before opening a database?
How to define a specific record type?
What is the difference between Delete, Truncate and Drop in Oracle?
how can db_files > maxdatafiles since db_files is for instance and the later is for database
what are archived logs?
How to insert a record into a table?