Answers for "how to find three highest salary by descending order id and ascending order namein sql"

SQL
-1

how to find top 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 three highest salary by descending order id and ascending order namein sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language