MUL
Syntax
<mul-expression> := 'MUL(' <Number> ',' <Number> ')'
<mul-expression> := <Number> '*' <Number>
Since
1.0
Return-type
Double
Description
This function multiplies all values of all arguments. If any of the values is NULL, the function returns NULL.
Instead of this function you also can use the operator "*".
Examples
MUL( 10, 42 )
= 420
10 * 42
= 420
10 * 42 * NULL
= NULL
See also
ADD, DIV, MOD, SUM
