From 8238fb209a9e62dfd1ca0c6bb35bcedc30363643 Mon Sep 17 00:00:00 2001 From: GowthamRaj K <43011442+gowthamrajk@users.noreply.github.com> Date: Fri, 30 Jul 2021 23:24:19 +0530 Subject: [PATCH] Update README.md --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2912e5a..9d10732 100644 --- a/README.md +++ b/README.md @@ -855,4 +855,11 @@ A view can be updated under certain conditions which are given below − - The HAVING Clause enables you to specify conditions that filter which group results appear in the results. - The WHERE clause places conditions on the selected columns, whereas the HAVING clause places conditions on groups created by the GROUP BY clause. - + SELECT column1, column2 + FROM table1, table2 + WHERE [ conditions ] + GROUP BY column1, column2 + HAVING [ conditions ] + ORDER BY column1, column2 + +