Cómo encontrar el salario Top 3 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;