World Geographic And Climatic Dataset
Mega Cities, Mountain Ranges and Global Warming
@kaggle.madhurpant_world_geographic_and_climatic_dataset
Mega Cities, Mountain Ranges and Global Warming
@kaggle.madhurpant_world_geographic_and_climatic_dataset
continentcountrycapital_citycapital_populationcountrytotal_co2c02_per_capitatotal_methanemethane_per_capitamega_citycountrypopulationmountain_rangehighest_mountheightcountriesCREATE TABLE capital_cities (
"continent" VARCHAR,
"country" VARCHAR,
"capital_city" VARCHAR,
"capital_population" BIGINT
);CREATE TABLE greenhouse_emission (
"country" VARCHAR,
"total_co2" VARCHAR,
"co2_per_capita" VARCHAR,
"total_methane" VARCHAR,
"methane_per_capita" VARCHAR
);CREATE TABLE mega_cities (
"mega_city" VARCHAR,
"country" VARCHAR,
"population" BIGINT
);CREATE TABLE mountain_ranges (
"mountain_range" VARCHAR,
"highest_mount" VARCHAR,
"height" BIGINT,
"countries" VARCHAR
);Anyone who has the link will be able to view this.