Math
ADD
Description: Adds two numeric expressions and returns the resulting value.
Syntax: ADD ( a , b )
Example:
TABLE( ADD(10, 5) AS "Sum" )
DIV
Description: Divides one numeric expression by another.
Syntax: DIV ( a , b )
Example:
TABLE( DIV(100, 4) AS "Ratio" )
MULT
Description: Multiplies two numeric expressions.
Syntax: MULT ( a , b )
Example:
TABLE( MULT(6, 7) AS "Product" )
SUB
Description: Subtracts one numeric expression from another.
Syntax: SUB ( a , b )
Example:
TABLE( SUB(20, 3) AS "Difference" )