Skip to content

Commit a0849c9

Browse files
authored
Update analyze-twitch-data-with-sqlite.mdx
1 parent 728d87b commit a0849c9

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

projects/analyze-twitch-data-with-sqlite/analyze-twitch-data-with-sqlite.mdx

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -159,18 +159,6 @@ CREATE TABLE streamers2021 (
159159
);
160160
```
161161

162-
- `channel`
163-
- `watch_time`
164-
- `stream_time`
165-
- `peak_viewers`
166-
- `average_viewers`
167-
- `followers`
168-
- `followers_gained`
169-
- `views_gained`
170-
- `partnered`
171-
- `mature`
172-
- `language`
173-
174162
These names will have to match the CSV columns as well as the data type here, or else there will be an error later.
175163

176164
### Import CSV into SQLite
@@ -224,6 +212,20 @@ LIMIT 20;
224212

225213
Which we've already done.
226214

215+
To list out the column names again:
216+
217+
- `channel`
218+
- `watch_time`
219+
- `stream_time`
220+
- `peak_viewers`
221+
- `average_viewers`
222+
- `followers`
223+
- `followers_gained`
224+
- `views_gained`
225+
- `partnered`
226+
- `mature`
227+
- `language`
228+
227229
### Languages
228230

229231
Let’s find all the unique languages in this dataset using the `DISTINCT` keyword:

0 commit comments

Comments
 (0)