IN keeps rows whose column value is a member of a small pinned list.
Input table
Start with the Orders table and read each status value.
Orders
Where query
Keep rows whose status is in the allowed list: paid or review.
WHERE status IN paid, review
Predicate truth
Paid and review rows evaluate to TRUE; pending evaluates to FALSE.
membership truth check
Filtered output
The filtered output keeps paid and review rows in their original row order.
paid or review orders