Skip to content

Commit

Permalink
Update usage_guide.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Elliot Boschwitz authored Jan 14, 2020
1 parent df42e5a commit 2ba4167
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions doc/usage_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2ba4167

Please sign in to comment.