From 99191723c7ed46bd5e3230e11254f43cd4cfef96 Mon Sep 17 00:00:00 2001 From: GowthamRaj K <43011442+gowthamrajk@users.noreply.github.com> Date: Tue, 27 Jul 2021 20:43:46 +0530 Subject: [PATCH] Update README.md --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 492f284..888b20c 100644 --- a/README.md +++ b/README.md @@ -276,11 +276,12 @@ Following are some of the most commonly used constraints available in SQL − SELECT column1, column2....columnN FROM table_name WHERE column_name LIKE { PATTERN }; -SQL ORDER BY Clause -SELECT column1, column2....columnN -FROM table_name -WHERE CONDITION -ORDER BY column_name {ASC|DESC}; + +### SQL ORDER BY Clause + SELECT column1, column2....columnN + FROM table_name + WHERE CONDITION + ORDER BY column_name {ASC|DESC}; SQL GROUP BY Clause SELECT SUM(column_name) FROM table_name