Population Of Pakistan (2050-1955)
Historical Population. Population Forecast, Population in Major Cities
@kaggle.anandhuh_population_of_pakistan
Historical Population. Population Forecast, Population in Major Cities
@kaggle.anandhuh_population_of_pakistan
The current population of Pakistan is 229,160,509 as of Wednesday, June 8, 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/pakistan-population/
Link : https://www.kaggle.com/anandhuh/datasets
If you find it useful, please support by upvoting ❤️
CREATE TABLE pakistan_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,
  "pakistan_global_rank" BIGINT
);CREATE TABLE pakistan_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,
  "pakistan_global_rank" BIGINT
);CREATE TABLE population_pakistan_cities (
  "city_name" VARCHAR,
  "population" BIGINT
);Anyone who has the link will be able to view this.