SALARIES — Above 4x the lowest salary (name + salary)

Write a query that returns the name and salary (in this column order) of all professors who make more than 4 times as much as the lowest paid professor.

Table schema
CREATE TABLE SALARIES (Professor_Name TEXT, Department TEXT, Salary INT);
Hint (click to show)
Compare to a scalar subquery.