MySQL Arithmetic Operators

The MySQL Arithmetic Operators are used to perform Arithmetic operations on column data such as Addition, Subtraction, Multiplication, Division, and Modulus. The following table shows you the list of available MySQL Arithmetic operators. MySQL Arithmetic Operators Operation Example + Addition Operator SELECT 10 + 2 = 12 – Subtraction Operator SELECT 10 – 2 = … Read more