Skip to main content

Operators

The below table details each operator that is available in the Update Table Rows and Delete Table Rows actions.

NameSQL OperatorDefinition/Use Case
EQ=Used to check if two values are exactly equal to each other.
NE!=Used to filter for records where two values are not equal.
GT>Determines if the left value is strictly greater than the right value.
LT<Determines if the left value is strictly less than the right value.
GTE>=Checks if a value is either greater than or exactly equal to another value.
LTE<=Checks if a value is either less than or exactly equal to another value.
LIKELIKEUsed for pattern matching with wildcards (e.g., % for any sequence) and is case-sensitive.
ILIKEILIKEA PostgreSQL-specific operator used for case-insensitive pattern matching.
NOTILIKENOT ILIKEFilters out records that match a case-insensitive pattern.
ISISPrimarily used to check for specific states, most commonly IS NULL or IS TRUE.
ISNOTIS NOTUsed to verify that a value is not in a specific state, such as IS NOT NULL.
ININChecks if a value matches any value within a specified list or the result of a subquery.
ANYANYCompares a single value against a set of values or an array, returning true if any match is found.