Population Of India (2050-1955)
Historical Population. Population Forecast, Population in Major Cities
@kaggle.anandhuh_population_data_india
Historical Population. Population Forecast, Population in Major Cities
@kaggle.anandhuh_population_data_india
The current population of India is 1,403,717,340 as of Sunday, April 3, 2022, based on Worldometer elaboration of the latest United Nations data. This three datasets contain population data of India (2020 and historical), population forecast and population in major cities.
Link : https://www.worldometers.info/world-population/india-population/
Link : https://www.kaggle.com/anandhuh/datasets
If you find it useful, please support by upvoting ❤️
CREATE TABLE india_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,
"india_global_rank" BIGINT
);
CREATE TABLE india_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,
"india_global_rank" BIGINT
);
CREATE TABLE population_indian_cities (
"city_name" VARCHAR,
"population" BIGINT
);
Anyone who has the link will be able to view this.