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