i want department wise maxmum salary and empolyee name
Answer Posted / kk
SELECT d.DEPARTMENT_NAME,max(e.salary) from HR.EMPLOYEES e
join HR.DEPARTMENTS d
on e.DEPARTMENT_ID=d.DEPARTMENT_ID
group by d.DEPARTMENT_NAME;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is Segment Advisor in Oracle?
How does oracle handle read consistency?
Describe the types of sub query?
How do we get field detail of a table?
Explain enable novalidate constraint.
How to convert character types to numeric types?
What happens if variable names collide with table/column names?
How a tablespace is related to data files?
List the types of joins used in writing subqueries?
How to write text literals in oracle?
Can we create trigger on materialized view in oracle?
What is the use of aggregate functions in oracle?
What is a cognitive schema?
How many types of auditing in Oracle?
How to rename a tablespace in oracle?