Home >>
SQL >> Arithmetic Operators in SQL
Arithmetic Operators in SQL
Operator Description Example (a=20,b=10)
+ Addition a + b return 30
- Subtraction a - b return 10
* Multiplication a * b return 200
/ Division a / b return 2
% Modulus a % b return 0
Post Your Comment