From 2ba4167251b81313887e31e223d9c0a28e1da520 Mon Sep 17 00:00:00 2001 From: Elliot Boschwitz Date: Tue, 14 Jan 2020 11:47:08 -0800 Subject: [PATCH] Update usage_guide.md --- doc/usage_guide.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/usage_guide.md b/doc/usage_guide.md index e1a7023c..a84dd1cb 100644 --- a/doc/usage_guide.md +++ b/doc/usage_guide.md @@ -132,14 +132,15 @@ SELECT * ```sql SELECT "Name", "DepartmentID" -......FROM "HumanResources"."Department" as hr; +......FROM "HumanResources"."Department" as hr ``` -4. To execute your multi-line query, add a semi-colon **;** at the end of the last line of your query, then press **Enter** key +4. To execute your multi-line query, add **GO** on a new-line, then press **Enter** key ```sql SELECT "Name", "DepartmentID" -......FROM "HumanResources"."Department" as hr; +......FROM "HumanResources"."Department" as hr +......GO ``` ## Environment Variables