“Comment obtenir un salaire maximum dans chaque département de SQL” Réponses codées

Obtenez un salaire maximum de chaque département 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);
Obedient Ocelot

Comment obtenir un salaire maximum dans chaque département de SQL

SELECT firstname, MAX(salary)
FROM department d LEFT OUTER JOIN employee e
ON (d.department_id = e.department_id)
GROUP BY department_id; 
Obedient Ocelot

Comment trouver le salaire Max et Min en SQL

SELECT MAX(SALARY) FROM EMPLOYEES
UNION
SELECT MIN(SALARY) FROM EMPLOYEES;
Obedient Ocelot

Deuxième salaire maximum en SQL

SELECT MAX(SALARY) 'SECOND_MAX' FROM EMPLOYEES
WHERE SALARY <> (SELECT MAX(SALARY) FROM EMPLOYEES);
Obedient Ocelot

Réponses similaires à “Comment obtenir un salaire maximum dans chaque département de SQL”

Questions similaires à “Comment obtenir un salaire maximum dans chaque département de SQL”

Plus de réponses similaires à “Comment obtenir un salaire maximum dans chaque département de SQL” dans Sql

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code