SALARIES — Highest salary in Computer Science

Write a query that returns the highest salary in the "Computer Science" department.

Table schema
CREATE TABLE SALARIES (Professor_Name TEXT, Department TEXT, Salary INT);
Hint (click to show)
Use MAX with a WHERE clause.