Cara menemukan 3 gaji tertinggi pertama di SQL

SELECT first-name
FROM employees
WHERE salary = (SELECT MAX(salary) FROM employees);
Obedient Ocelot