From e23789170b278b7c82a858a3eb85461eda016ef3 Mon Sep 17 00:00:00 2001 From: GowthamRaj K <43011442+gowthamrajk@users.noreply.github.com> Date: Fri, 30 Jul 2021 23:12:53 +0530 Subject: [PATCH] Update README.md --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 24ba581..1d3a262 100644 --- a/README.md +++ b/README.md @@ -794,3 +794,10 @@ The following guidelines indicate when the use of an index should be reconsidere ## Creating Views + CREATE VIEW view_name AS + SELECT column1, column2..... + FROM table_name + WHERE [condition]; + + +