IN
• The IN operator allows you to specify multiple values in a WHERE
clause, serving as a shorthand for multiple OR conditions.
SELECT column_name(s)
FROM table_name
WHERE column_name IN (value1, value2, . . .);
• The IN operator allows you to specify multiple values in a WHERE
clause, serving as a shorthand for multiple OR conditions.
SELECT column_name(s)
FROM table_name
WHERE column_name IN (value1, value2, . . .);