Write a query that returns the third highest salary in the table. Duplicate salaries count as one (e.g. with 20, 20, 10, 5 the second highest is 10).
CREATE TABLE SALARIES (Professor_Name TEXT, Department TEXT, Salary INT);