two tables are there
emp(eno,ename,sal,deptno),dept(deptno,dname).how form the
query in deptno,ename,max(sal)
Answer Posted / no_name
select deptno,dname,max(sal) dept_max
from
(select empno, e.deptno, d.dname, e.sal
from emp e,
dept d
where e.deptno = d.deptno)
group by deptno,dname;
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
Write a syntax for update query in oracle?
How to delete a column in an existing table in oracle?
What is a static data dictionary in oracle?
What is oracle used for?
Use of an integrity constraint is better to validate data. Explain
Explain enable novalidate constraint.
What is a snapshot log?
Explain view?
What are the various oracle database objects?
How to check the server version in oracle?
What do you mean by cdb and pdb in oracle 12c?
How to create tables for odbc connection testing?
Explain what does a control file contain?
How can windows applications connect to oracle servers?
How can we view last record added to a table?