“Nth höchstes Gehalt” Code-Antworten

Finden Sie das höchste Gehalt eines Mitarbeiter

#Method 1
SELECT salary FROM Employee ORDER BY salary DESC LIMIT N-1, 1

#Method 2
SELECT salary FROM Employee AS e1 
WHERE n-1=(SELECT COUNT(DISTINCT,salary) FROM Employee AS e2 
           WHERE e2.salary>e1.salary)
Sukhendra Rajawat

3. Höhe des Gehalts SQL

SELECT MIN(EmpSalary) from ( 
	SELECT EmpSalary from Employee ORDER BY EmpSalary DESC LIMIT 3 
);
Nice Newt

Nth höchstes Gehalt

SELECT salary FROM Employee ORDER BY salary DESC LIMIT N-1, 1
Clumsy Cockroach

Ähnliche Antworten wie “Nth höchstes Gehalt”

Fragen ähnlich wie “Nth höchstes Gehalt”

Weitere verwandte Antworten zu “Nth höchstes Gehalt” auf Sql

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen