This file contains 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
/* Source: http://www.boxofficemojo.com/alltime/world/ */ | |
CREATE TABLE top_movies( | |
rank TEXT NOT NULL PRIMARY KEY | |
, title TEXT | |
, studio TEXT | |
, worldwide TEXT | |
, domestic_money TEXT | |
, domestic_percent TEXT | |
, overseas_money TEXT |
This file contains 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
/* | |
Top 100 Countres By Population, 2014 | |
Collected by https://www.khanacademy.org/profile/darrylyeo/ | |
Data adapted from | |
http://www.worldometers.info/world-population/population-by-country/ | |
*/ | |
CREATE TABLE countries_by_population ( | |
rank INTEGER PRIMARY KEY AUTOINCREMENT, | |
country TEXT, |