Created
January 9, 2012 07:59
-
-
Save rohitdholakia/1581793 to your computer and use it in GitHub Desktop.
SQL Queries to set up Twitter data processing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| crazyabtliv@linux-hknk:~> sqlite3 twitter.db | |
| SQLite version 3.7.9 2011-11-01 00:52:41 | |
| Enter ".help" for instructions | |
| Enter SQL statements terminated with a ";" | |
| sqlite> .tables | |
| sqlite> create table tweets ( | |
| ...> username string, | |
| ...> tweet string); | |
| sqlite> .tables | |
| tweets |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment