World Population By Country 2023
Countries in the world by population 2023
@kaggle.joebeachcapital_world_population_by_country_2023
Countries in the world by population 2023
@kaggle.joebeachcapital_world_population_by_country_2023
This list includes both countries and dependent territories. Data based on the latest United Nations Population Division estimates.
CREATE TABLE worldpopulation2023 (
"rank" BIGINT,
"country" VARCHAR,
"population2023" BIGINT,
"yearlychange" VARCHAR,
"netchange" BIGINT,
"density_p_km" BIGINT -- Density(P/Km²),
"land_area_km" BIGINT -- Land Area(Km²),
"migrants_net" BIGINT -- Migrants(net),
"fert_rate" DOUBLE,
"medianage" DOUBLE,
"urbanpop" VARCHAR -- UrbanPop%,
"worldshare" VARCHAR
);
Anyone who has the link will be able to view this.