Answers for "how to find first 3 highest salary in sql"

SQL
0

how to find first 3 highest salary in sql

SELECT first-name
FROM employees
WHERE salary = (SELECT MAX(salary) FROM employees);
Posted by: Guest on January-28-2021

Code answers related to "how to find first 3 highest salary in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language