In which scenario, below query will return an error message? SELECT * FROM EMPLOYEES WHERE department = (SELECT department from employees where first_name = 'JANE';
When there are multiple records with first_name 'JANE'
It will never return an error
When there is no record with first_name='JANE'
When there is only one record with first_name 'JANE'