“SQL 2nd höchstes Gehalt” Code-Antworten

SQL Finden Sie den zweithöchsten Gehaltsangestellter

/* sql 2nd highest salary employee */
select sal, ename
from emp
where sal =
    (
        select max(sal) from emp where sal <
            (select max(sal) from emp)
    )
----------------------------------------------- option 2
select *
from 
(
    select ename, sal, dense_rank() over(order by sal desc) rank
    from emp
)
where rank =2;
Wide-eyed Wolf

SQL 2nd höchstes Gehalt

select *from employee 
group by salary 
order by  salary desc limit 1,1;
Zealous Zebra

Nth höchstes Gehalt in 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

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

Ähnliche Antworten wie “SQL 2nd höchstes Gehalt”

Fragen ähnlich wie “SQL 2nd höchstes Gehalt”

Weitere verwandte Antworten zu “SQL 2nd höchstes Gehalt” auf Sql

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen