how to print 3rd highest salary in the salary table in mysql 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;