display Nth highest salary. Get link Facebook X Pinterest Email Other Apps March 28, 2016 SELECT e1.sal FROM employee e1 WHERE &N = (SELECT COUNT(DISTINCT (sal) ) FROM employee e2 WHERE e1.sal <= e2.sal); Read more