An equality predicate keeps rows with the requested category value.
highlighted = computed this step
Input table
Use the same Orders table with repeated status values.
Orders
Where query
Filter to rows whose status equals the requested label.
WHERE status equals paid
Filtered output
Both matching paid rows remain because WHERE does not dedupe.
paid orders