how to find three highest salary by descending order id and ascending order namein sql code example
Example: top 3 salary in sql
SELECT salary, first_name, last_name FROM employees
ORDER BY salary DESC LIMIT 3;
SELECT salary, first_name, last_name FROM employees
ORDER BY salary DESC LIMIT 3;