Write a query that returns the name, department, and salary (in this column order) of the highest earning professor in each department.
CREATE TABLE SALARIES (Professor_Name TEXT, Department TEXT, Salary INT);