All Pokemon Dataset
Data from all Pokemons and their different forms from all 8 generations
@kaggle.maca11_all_pokemon_dataset
Data from all Pokemons and their different forms from all 8 generations
@kaggle.maca11_all_pokemon_dataset
CREATE TABLE all_pokemon (
"number" BIGINT,
"name" VARCHAR,
"type_1" VARCHAR,
"type_2" VARCHAR,
"abilities" VARCHAR,
"hp" BIGINT,
"att" BIGINT,
"def" BIGINT,
"spa" BIGINT,
"spd" BIGINT,
"spe" BIGINT,
"bst" BIGINT,
"mean" DOUBLE,
"standard_deviation" DOUBLE,
"generation" DOUBLE,
"experience_type" VARCHAR,
"experience_to_level_100" BIGINT,
"final_evolution" DOUBLE,
"catch_rate" BIGINT,
"legendary" DOUBLE,
"mega_evolution" DOUBLE,
"alolan_form" DOUBLE,
"galarian_form" DOUBLE,
"against_normal" DOUBLE,
"against_fire" DOUBLE,
"against_water" DOUBLE,
"against_electric" DOUBLE,
"against_grass" DOUBLE,
"against_ice" DOUBLE,
"against_fighting" DOUBLE,
"against_poison" DOUBLE,
"against_ground" DOUBLE,
"against_flying" DOUBLE,
"against_psychic" DOUBLE,
"against_bug" DOUBLE,
"against_rock" DOUBLE,
"against_ghost" DOUBLE,
"against_dragon" DOUBLE,
"against_dark" DOUBLE,
"against_steel" DOUBLE,
"against_fairy" DOUBLE,
"height" DOUBLE,
"weight" DOUBLE,
"bmi" DOUBLE
);
Anyone who has the link will be able to view this.