From f13ee5e75a5e18a6443ce0e77f4f0335d84d5362 Mon Sep 17 00:00:00 2001 From: GowthamRaj K <43011442+gowthamrajk@users.noreply.github.com> Date: Wed, 28 Jul 2021 11:39:32 +0530 Subject: [PATCH] Update README.md --- README.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index ff96c92..63fe9b0 100644 --- a/README.md +++ b/README.md @@ -412,10 +412,14 @@ Following are some of the most commonly used constraints available in SQL − **- Operators used to negate conditions** ## SQL Arithmetic Operators ✨ -
+ ### + (Addition) - Adds values on either side of the operator. -- (Subtraction) Subtracts right hand operand from left hand operand. -* (Multiplication) 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. +### - (Subtraction) +- Subtracts right hand operand from left hand operand. +### * (Multiplication) +- 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.