As mentioned earlier while you want to limit the rows with the usage of ‘WHERE’ clause at the same time you can also use the IN operator to have multiple values in the ‘WHERE’ clause. This is an alternative use of having multiple OR. Here is the syntax.
SELECT {*|<Col1>}, <Col2>, <Col3>…
FROM <table name>
WHERE <column name> [...]
Popularity: 18% [?]



