I'm getting this error message "FROM keyword not found where expected." What am I doing wrong?
SELECT department_id
FROM employees
HAVING MIN(salary) < (SELECT MIN(salary)
WHERE department_id < 60)
GROUP BY department_id;
Thanks for your help!
You are missing a from in the line:
It needs to be
For the complete query: