Multiply | MATH_MULTIPLY
Syntax
MATH_MULTIPLY( [value], [other] )
Parameters
value
A number.
If the value is not a NUMBER, the FLOAT operation will be used to convert it.
other
A number.
If the value is not a NUMBER, the FLOAT operation will be used to convert it.
Return Value
Returns a number.Description
Multiply two values.Examples
MATH_MULTIPLY(1, 2) # returns 2
MATH_MULTIPLY(null, null) # returns 0
MATH_MULTIPLY("-15", "7") # returns -105