“Erstes Maximalgehalt in SQL” Code-Antworten

Erstes Maximalgehalt in SQL

SELECT first-name
FROM employees
WHERE salary = (SELECT MAX(salary) FROM employees);
Obedient Ocelot

Zweites Maximalgehalt in SQL

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

SQL höchstes Gehalt nach Standort

/*  Highest salary by Department/Location   */
SELECT e.ename, e.sal, e.deptno, d.loc
FROM emp e
JOIN dept d
ON e.deptno = d.deptno
WHERE e.sal in
( 	
  	select max(sal) 
  	from emp 
  	group by deptno
)
Wide-eyed Wolf

Wie man Mitarbeiter in MySQL maximale Erfahrung in MySQL bringt

select max(salary), dept_id from employee where salary not in(select max(salary) from employee) group by dept_id;
Horrible Hedgehog

Ähnliche Antworten wie “Erstes Maximalgehalt in SQL”

Fragen ähnlich wie “Erstes Maximalgehalt in SQL”

Weitere verwandte Antworten zu “Erstes Maximalgehalt in SQL” auf Sql

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen