I have the following query that returns an error and i want to know what is the problem ? SELECT last_name, first_name FROM employees WHERE salary = (SELECT salary FROM employees WHERE department_id = 30); the error returned is : (SELECT salary FROM employees WHERE department_id ...
Question