Game Of Thrones
Explore deaths and battles from this fantasy world
@kaggle.mylesoneill_game_of_thrones
Explore deaths and battles from this fantasy world
@kaggle.mylesoneill_game_of_thrones
CREATE TABLE battles (
"name" VARCHAR,
"year" BIGINT,
"battle_number" BIGINT,
"attacker_king" VARCHAR,
"defender_king" VARCHAR,
"attacker_1" VARCHAR,
"attacker_2" VARCHAR,
"attacker_3" VARCHAR,
"attacker_4" VARCHAR,
"defender_1" VARCHAR,
"defender_2" VARCHAR,
"defender_3" VARCHAR,
"defender_4" VARCHAR,
"attacker_outcome" VARCHAR,
"battle_type" VARCHAR,
"major_death" DOUBLE,
"major_capture" DOUBLE,
"attacker_size" DOUBLE,
"defender_size" DOUBLE,
"attacker_commander" VARCHAR,
"defender_commander" VARCHAR,
"summer" DOUBLE,
"location" VARCHAR,
"region" VARCHAR,
"note" VARCHAR
);
CREATE TABLE character_deaths (
"name" VARCHAR,
"allegiances" VARCHAR,
"death_year" DOUBLE,
"book_of_death" DOUBLE,
"death_chapter" DOUBLE,
"book_intro_chapter" DOUBLE,
"gender" BIGINT,
"nobility" BIGINT,
"got" BIGINT,
"cok" BIGINT,
"sos" BIGINT,
"ffc" BIGINT,
"dwd" BIGINT
);
CREATE TABLE character_predictions (
"s_no" BIGINT,
"actual" BIGINT,
"pred" BIGINT,
"alive" DOUBLE,
"plod" DOUBLE,
"name" VARCHAR,
"title" VARCHAR,
"male" BIGINT,
"culture" VARCHAR,
"dateofbirth" DOUBLE,
"dateofdeath" DOUBLE,
"mother" VARCHAR,
"father" VARCHAR,
"heir" VARCHAR,
"house" VARCHAR,
"spouse" VARCHAR,
"book1" BIGINT,
"book2" BIGINT,
"book3" BIGINT,
"book4" BIGINT,
"book5" BIGINT,
"isalivemother" DOUBLE,
"isalivefather" DOUBLE,
"isaliveheir" DOUBLE,
"isalivespouse" DOUBLE,
"ismarried" BIGINT,
"isnoble" BIGINT,
"age" DOUBLE,
"numdeadrelations" BIGINT,
"booldeadrelations" BIGINT,
"ispopular" BIGINT,
"popularity" DOUBLE,
"isalive" BIGINT
);
Anyone who has the link will be able to view this.