SALARIES — Highest earner in Computer Science

Write a query that returns the name and salary (in this column order) of the professor with the highest salary in the "Computer Science" department.

Table schema
CREATE TABLE SALARIES (Professor_Name TEXT, Department TEXT, Salary INT);
Hint (click to show)
Filter the department, then order and limit.