Answers for "write sql query to find max salary from each department(print name and the max salary)"

SQL
0

get max salary from each department sql

--Find out the name of top earner in each departments
--Output has Name, Department name and max salary of the department

SELECT E.FIRST_NAME , D.DEPARTMENT_NAME, E.SALARY
FROM EMPLOYEES E
JOIN DEPARTMENTS D ON E.DEPARTMENT_ID = D.DEPARTMENT_ID
WHERE SALARY IN(SELECT MAX(E.SALARY)
FROM EMPLOYEES E
JOIN DEPARTMENTS D ON E.DEPARTMENT_ID = D.DEPARTMENT_ID
GROUP BY DEPARTMENT_NAME);
Posted by: Guest on December-01-2020

Code answers related to "write sql query to find max salary from each department(print name and the max salary)"

Code answers related to "SQL"

Browse Popular Code Answers by Language