From 951e5fd96e3cc821ec3520613ee2c38190f29877 Mon Sep 17 00:00:00 2001 From: GowthamRaj K <43011442+gowthamrajk@users.noreply.github.com> Date: Tue, 27 Jul 2021 20:45:19 +0530 Subject: [PATCH] Update README.md --- README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index eb72e4e..fa5ecd8 100644 --- a/README.md +++ b/README.md @@ -294,12 +294,13 @@ Following are some of the most commonly used constraints available in SQL − FROM table_name WHERE CONDITION; -SQL HAVING Clause -SELECT SUM(column_name) -FROM table_name -WHERE CONDITION -GROUP BY column_name -HAVING (arithematic function condition); +### SQL HAVING Clause + SELECT SUM(column_name) + FROM table_name + WHERE CONDITION + GROUP BY column_name + HAVING (arithematic function condition); + SQL CREATE TABLE Statement CREATE TABLE table_name( column1 datatype,