SALARIES — Lowest earner (name + salary)

Write a query that returns the name and salary (in this column order) of the lowest earning professor.

Table schema
CREATE TABLE SALARIES (Professor_Name TEXT, Department TEXT, Salary INT);
Hint (click to show)
ORDER BY ... ASC then LIMIT 1.