List of expression elements / Arithmetic operators |
The * operator multiplies a number with another.
num-expr * num-expr
Use the * operator to multiply a numeric value to another numeric value.
If one of the operands is NULL, the arithmetic expression evaluates to NULL.
MAIN DISPLAY 100 * 200 END MAIN