Skip to content

Commit 2ba4167

Browse files
author
Elliot Boschwitz
authored
Update usage_guide.md
1 parent df42e5a commit 2ba4167

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

doc/usage_guide.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,14 +132,15 @@ SELECT *
132132
133133
```sql
134134
SELECT "Name", "DepartmentID"
135-
......FROM "HumanResources"."Department" as hr;
135+
......FROM "HumanResources"."Department" as hr
136136
```
137137
138-
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
138+
4. To execute your multi-line query, add **GO** on a new-line, then press **Enter** key
139139
140140
```sql
141141
SELECT "Name", "DepartmentID"
142-
......FROM "HumanResources"."Department" as hr;
142+
......FROM "HumanResources"."Department" as hr
143+
......GO
143144
```
144145
145146
## Environment Variables

0 commit comments

Comments
 (0)