Configuration
Select a column, an operator, and a value.
Supported operators
| Operator | Meaning |
|---|---|
= | Equals |
≠ | Not equals |
> ≥ < ≤ | Greater/less than (or equal) |
contains | Substring match (compiles to LIKE) |
in / not in | Value is/isn't in a list |
is empty / is not empty | Null check |
Compiled SQL
Values are always passed as query parameters, never concatenated into the query string. See How DataQloo compiles workflows to SQL for detail.
Limits
One Filter node holds one condition. Combining multiple conditions (AND/OR) in a single node is on the roadmap.