World Population 1960-2018
Population each country / region from 1960 to 2018
@kaggle.imdevskp_world_population_19602018
Population each country / region from 1960 to 2018
@kaggle.imdevskp_world_population_19602018
CREATE TABLE population_above_age_65_percentage_long (
"country_name" VARCHAR,
"year" BIGINT,
"count" BIGINT
);
CREATE TABLE population_below_age_14_percentage_long (
"country_name" VARCHAR,
"year" BIGINT,
"count" BIGINT
);
CREATE TABLE population_density_long (
"country_name" VARCHAR,
"year" BIGINT,
"count" BIGINT
);
CREATE TABLE population_female_percentage_long (
"country_name" VARCHAR,
"year" BIGINT,
"count" BIGINT
);
CREATE TABLE population_total_long (
"country_name" VARCHAR,
"year" BIGINT,
"count" BIGINT
);
CREATE TABLE pop_worldometer_data (
"country_or_dependency" VARCHAR,
"population_2020" BIGINT,
"yearly_change" DOUBLE,
"net_change" BIGINT,
"density_p_km" DOUBLE,
"land_area_km" DOUBLE,
"migrants_net" DOUBLE,
"fert_rate" DOUBLE,
"med_age" DOUBLE,
"urban_pop" DOUBLE,
"world_share" DOUBLE
);
Anyone who has the link will be able to view this.