Answers for "how to find third max salary in sql"

SQL
0

3rd highest salary in sql

Here is the solution for 3rd 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 = 3;
Posted by: Guest on January-07-2021
-1

max 3 salary in sql

SELECT salary, first_name, last_name FROM employees
ORDER BY salary DESC LIMIT 3;
Posted by: Guest on January-28-2021

Code answers related to "how to find third max salary in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language