-
The following query belongs to which condition types?
SELECT firstname
FROM Employee
WHERE dept_id= (SELECT dept_id FROM department WHERE names=’s’);
-
- Range condition
- Equality condition
- Inequality condition
- All of above
- None of these
Correct Option: B
In the following query column equate to the value returned by subquery.