“Salaire max 3 en SQL” Réponses codées

n salaire le plus élevé en SQL

SELECT TOP 1 salary
FROM (
SELECT DISTINCT TOP N salary
FROM #Employee
ORDER BY salary DESC
) AS temp
ORDER BY salary
Clumsy Cockroach

Nème salaire le plus élevé de SQL

Here is the solution for nth highest
salary from employees table 

SELECT FIRST_NAME , SALARY FROM 
(SELECT FIRST_NAME, SALARY, DENSE_RANK() OVER
(ORDER BY SALARY DESC) AS SALARY_RANK
FROM EMPLOYEES)
WHERE SALARY_RANK = n; 
Obedient Ocelot

Salaire max 3 en SQL

SELECT salary, first_name, last_name FROM employees
ORDER BY salary DESC LIMIT 3;
Obedient Ocelot

Deuxième salaire maximum en SQL

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

Salaire et nom et nom max dans SQL

SELECT FIRST_NAME , SALARY
FROM EMPLOYEES
WHERE SALARY IN (SELECT MAX(SALARY)AS RESULT FROM EMPLOYEES
UNION
SELECT MIN(SALARY)AS RESULT FROM EMPLOYEES);
Obedient Ocelot

Réponses similaires à “Salaire max 3 en SQL”

Questions similaires à “Salaire max 3 en SQL”

Plus de réponses similaires à “Salaire max 3 en SQL” dans Sql

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code