Population Of Brazil (2050-1955)
Historical Population. Population Forecast, Population in Major Cities
@kaggle.anandhuh_population_brazil
Historical Population. Population Forecast, Population in Major Cities
@kaggle.anandhuh_population_brazil
The current population of Brazil is 215,653,799 as of Friday, July 22, 2022, based on Worldometer elaboration of the latest United Nations data.. This three datasets contain population data of Pakistan (2020 and historical), population forecast and population in major cities.
Link : https://www.worldometers.info/world-population/brazil-population/
Link : https://www.kaggle.com/anandhuh/datasets
If you find it useful, please support by upvoting ❤️
CREATE TABLE brazil_population (
"year" BIGINT,
"population" BIGINT,
"yearly_change" DOUBLE -- Yearly % Change,
"yearly_change_edbbdd" BIGINT -- Yearly Change,
"migrants_net" BIGINT -- Migrants (net),
"median_age" DOUBLE,
"fertility_rate" DOUBLE,
"density_p_km" BIGINT -- Density (P/Km²),
"urban_pop" DOUBLE -- Urban Pop %,
"urban_population" BIGINT,
"country_s_share_of_world_pop" DOUBLE -- Country\u0027s Share Of World Pop,
"world_population" BIGINT,
"brazil_global_rank" BIGINT
);
CREATE TABLE brazil_population_forecast (
"year" BIGINT,
"population" BIGINT,
"yearly_change" DOUBLE -- Yearly % Change,
"yearly_change_edbbdd" BIGINT -- Yearly Change,
"migrants_net" BIGINT -- Migrants (net),
"median_age" DOUBLE,
"fertility_rate" DOUBLE,
"density_p_km" BIGINT -- Density (P/Km²),
"urban_pop" DOUBLE -- Urban Pop %,
"urban_population" BIGINT,
"country_s_share_of_world_pop" DOUBLE -- Country\u0027s Share Of World Pop,
"world_population" BIGINT,
"brazil_global_rank" BIGINT
);
CREATE TABLE population_brazil_cities (
"city_name" VARCHAR,
"population" BIGINT
);
Anyone who has the link will be able to view this.