Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The IN keyword checks whether a specified value matches any value in a list. For example, the following query returns all items where the category matches at least one of the values in a list.
SELECT
*
FROM
products p
WHERE
p.category IN ("Accessories", "Clothing")
Tip
If you include your partition key in the IN filter, your query automatically filters to only the relevant partitions.