Common Content for Data Engineering
- Common Content for Data Engineering 10.2.1
- All Products
Operator | Meaning |
---|---|
NOT | Negates result of an expression. For example, if an expression evaluates to TRUE, the operator NOT returns FALSE. If an expression evaluates to FALSE, NOT returns TRUE. |
AND | Joins two conditions and returns TRUE if both conditions evaluate to TRUE. Returns FALSE if one condition is not true. |
OR | Connects two conditions and returns TRUE if any condition evaluates to TRUE. Returns FALSE if both conditions are not true. |