Published
- 1 min read
Find second highest salary in MySQL?
The solution for this is noted below
Find second highest salary in MySQL?
Solution
SELECT MAX(salary) From emp_table WHERE salary < ( SELECT Max(salary) FROM emp_table);
Try other methods by searching on the site. That is if this doesn’t work