Update README.md

This commit is contained in:
GowthamRaj K
2021-07-28 11:39:32 +05:30
committed by GitHub
parent 3fd79b83f1
commit f13ee5e75a
+9 -5
View File
@@ -412,10 +412,14 @@ Following are some of the most commonly used constraints available in SQL
**- Operators used to negate conditions** **- Operators used to negate conditions**
## SQL Arithmetic Operators ✨ ## SQL Arithmetic Operators ✨
<hr>
### + (Addition) ### + (Addition)
- Adds values on either side of the operator. - Adds values on either side of the operator.
- (Subtraction) Subtracts right hand operand from left hand operand. ### - (Subtraction)
* (Multiplication) Multiplies values on either side of the operator. - Subtracts right hand operand from left hand operand.
/ (Division) Divides left hand operand by right hand operand. ### * (Multiplication)
% (Modulus) Divides left hand operand by right hand operand and returns remainder. - Multiplies values on either side of the operator.
### / (Division)
- Divides left hand operand by right hand operand.
### % (Modulus)
- Divides left hand operand by right hand operand and returns remainder.