#2nd Most highest salary using Group By, Order By & Limit clause SELECT sal FROM emp GROUP BY sal ORDER BY sal DESC LIMIT 1, 1;