Given an employee table, find the e_id and e_name of the employee with the third highest salary code example
Example: n highest salary in sql
SELECT salary FROM Employee ORDER BY salary DESC LIMIT N-1, 1
SELECT salary FROM Employee ORDER BY salary DESC LIMIT N-1, 1