File tree Expand file tree Collapse file tree 1 file changed +14
-12
lines changed
projects/analyze-twitch-data-with-sqlite Expand file tree Collapse file tree 1 file changed +14
-12
lines changed Original file line number Diff line number Diff 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-
174162These 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
225213Which 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
229231Let’s find all the unique languages in this dataset using the ` DISTINCT ` keyword:
You can’t perform that action at this time.
0 commit comments