Table of Contents
MySQL IN operator
IN operator:
The IN operator allows you to specify multiple values in a WHERE clause.
The IN operator is a shorthand for multiple OR candidates.
IN operator Syntax:
Code: SELECT * FROM table_name
WHERE column_name IN (value1, value2, …);


