The following statement uses a comparison operator with the ANY quantifier to select the employee number, name, and department number of anyone in departments 100, 300, and 500:
This Expression … | Is Equivalent to this expression… |
---|---|
SELECT EmpNo, Name, DeptNo FROM Employee WHERE DeptNo = ANY (100,300,500) ; |
and SELECT EmpNo, Name, DeptNo FROM Employee WHERE DeptNo IN (100,300,500) ; |