World Population
World Population by Countries 2022
@kaggle.muhammedtausif_world_population_by_countries
World Population by Countries 2022
@kaggle.muhammedtausif_world_population_by_countries
World Population data with respect to each country/entity in the world. It contains 235 records in total, and 11 columns that contain data about total population till 2020, yearly change, net change, density, land area, migrants, fertility rate, med age, urban population, and world share of the population.
CREATE TABLE world_population_by_country_2020 (
"no" BIGINT,
"country_or_dependency" VARCHAR -- Country (or Dependency),
"population_2020" BIGINT,
"yearly_change" VARCHAR,
"net_change" BIGINT,
"density_p_km" BIGINT -- Density (P/Km²),
"land_area_km" BIGINT -- Land Area (Km²),
"migrants_net" DOUBLE -- Migrants (net),
"fert_rate" VARCHAR -- Fert. Rate,
"med_age" VARCHAR -- Med. Age,
"urban_pop" VARCHAR -- Urban Pop %,
"world_share" VARCHAR
);Anyone who has the link will be able to view this.