Match any value from a list.
Section: Filtering Rows
Filter with IN
sql
sql
SELECT *
FROM products
WHERE category IN ('books', 'games', 'toys');Explanation
IN is often clearer than multiple OR comparisons.
Learn the surrounding workflow
Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.
Related commands
Same sheet · prioritizing Filtering Rows