Common Content for Data Engineering
- Common Content for Data Engineering 10.2.2 Service Pack 1
- All Products
Operator | Meaning |
---|---|
[ ], . | Subscript, dot.
|
( )
| Parentheses.
|
+, -, NOT
| Unary plus and minus and the logical NOT operator.
|
*, /,%
| Multiplication, division, modulus.
|
+, -
| Addition, subtraction.
|
||
| Concatenate.
|
<, <=, >, >=
| Less than, less than or equal to, greater than, greater than or equal to.
|
=, <>, !=, ^=
| Equal to, not equal to, not equal to, not equal to.
|
AND
| Logical AND operator, used when specifying conditions.
|
OR
| Logical OR operator, used when specifying conditions.
|
Equation | Return Value |
---|---|
8 + 5 - 2 * 8
| -3
|
8 + (5 - 2) * 8
| 32
|