Afghanistan Population Data
War Ravaged Afghanistan historical population data
@kaggle.haseebchohan_afghanistan_population_data
War Ravaged Afghanistan historical population data
@kaggle.haseebchohan_afghanistan_population_data
The current population of Afghanistan is 41,422,675 as of Tuesday, May 9, 2023, based on Worldometer elaboration of the latest United Nations data.
Afghanistan 2020 population is estimated at 38,928,346 people at mid year according to UN data.
Afghanistan population is equivalent to 0.5% of the total world population.
Afghanistan ranks number 37 in the list of countries (and dependencies) by population.
The population density in Afghanistan is 60 per Km2 (154 people per mi2).
The total land area is 652,860 Km2 (252,071 sq. miles)
25.4 % of the population is urban (9,904,337 people in 2020)
The median age in Afghanistan is 18.4 years.
CREATE TABLE afghanistan_population_forecast (
"year" BIGINT,
"population" BIGINT,
"yearly_change" VARCHAR -- 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" VARCHAR -- Urban Pop %,
"urban_population" BIGINT,
"country_s_share_of_world_pop" VARCHAR,
"world_population" BIGINT,
"afghanistan_global_rank" BIGINT
);
CREATE TABLE main_cities_by_population (
"city_name" VARCHAR,
"population" BIGINT
);
Anyone who has the link will be able to view this.