How can we match a column against several possible values?
The IN operator checks whether a column value matches any value within a discrete list of literals or subquery results.
Targeting specific departments, status flags, country lists without repeating multiple OR statements.
SELECT name, department
FROM employees
WHERE department IN ('Engineering', 'Analytics', 'Finance');Practice typing production-grade SQL code for IN.