The IN operator is used to reduce the multiple or conditions by specifying the multiple values in a where clause.
Syntax:
SELECT * FROM tableName WHERE columnName IN (value1,value2,… valueN);
The value of the conditioned column should be equal to the any one of the specified values in the IN operator.
No comments:
Post a Comment