Add | MATH_ADD
Syntax
MATH_ADD( [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
Add two numbers together.Examples
MATH_ADD(1, 2) # returns 3
MATH_ADD(null, null) # returns 0
MATH_ADD("-15", "7") # returns -8