Definitions for "Arithmetic operator"
A special symbol or a reserved word used in arithmetic operations. The following are common arithmetic operators in Pascal: +, -, *, /, mod, div.
A symbol that directs the performance of an arithmetic operation. The intrinsic arithmetic operators are: + addition - subtraction * multiplication / division ** exponentiation
Symbols that allow you to create an arithmetic expression in SQL statements. Addition (+), subtraction (-), division (/) and multiplication (*) can be used with numeric columns. Module (%) can only be used with the integer datatypes. See also comparison operator.