Top 3 salario en SQL
SELECT salary, first_name, last_name FROM employees
ORDER BY salary DESC LIMIT 3;
Obedient Ocelot
SELECT salary, first_name, last_name FROM employees
ORDER BY salary DESC LIMIT 3;