“So finden Sie das dritthöchste Gehalt in SQL” Code-Antworten

n höchstes Gehalt in SQL

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

Schreiben Sie die SQL -Abfrage, um das zweithöchste Gehalt des Mitarbeiters zu finden

SELECT MAX(Salary) From Employee
 WHERE Salary < ( SELECT Max(Salary) FROM Employee);
Obedient Owl

So erhalten Sie in jeder Abteilung in SQL das zweithöchste Gehalt in jeder Abteilung

SELECT E.Employers_name, E.dep_number, E.salary
FROM Employers E
WHERE 1 = (SELECT COUNT(DISTINCT salary) 
        FROM Employers B 
        WHERE B.salary > E.salary AND E.dep_number = B.dep_number)
group by E.dep_number
Obedient Ocelot

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

So finden Sie das dritthöchste Gehalt in SQL

-- creating Employee table in Oracle
CREATE TABLE Employee (name varchar(10), salary int);

-- inserting sample data into Employee table
INSERT INTO Employee VALUES ('Rick', 3000);
INSERT INTO Employee VALUES ('John', 4000);
INSERT INTO Employee VALUES ('Shane', 3000);
INSERT INTO Employee VALUES ('Peter', 5000);
INSERT INTO Employee VALUES ('Jackob', 7000);

SELECT TOP 1 salary 
FROM (
  SELECT DISTINCT TOP 3 salary FROM Employee ORDER BY salary DESC 
  ) AS temp 
ORDER BY salary
Tiny Coders

Ähnliche Antworten wie “So finden Sie das dritthöchste Gehalt in SQL”

Fragen ähnlich wie “So finden Sie das dritthöchste Gehalt in SQL”

Weitere verwandte Antworten zu “So finden Sie das dritthöchste Gehalt in SQL” auf Sql

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen