World Population Prospects
@owid.un_wpp
@owid.un_wpp
World Population Prospects 2024 is the 28th edition of the official estimates and projections of the global population that have been published by the United Nations since 1951. The estimates are based on all available sources of data on population size and levels of fertility, mortality and international migration for 237 countries or areas. More details at https://population.un.org/wpp/Publications/.
CREATE TABLE owid_births_2 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"age" VARCHAR,
"variant" VARCHAR,
"births" FLOAT,
"birth_rate" FLOAT
);CREATE TABLE owid_deaths_2 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"age" VARCHAR,
"variant" VARCHAR,
"deaths" FLOAT,
"death_rate" FLOAT
);CREATE TABLE owid_demographic (
"location" VARCHAR,
"year" INTEGER,
"metric" VARCHAR,
"sex" VARCHAR,
"age" VARCHAR,
"variant" VARCHAR,
"value" FLOAT
);CREATE TABLE owid_dependency_ratio_2 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"age" VARCHAR,
"variant" VARCHAR,
"dependency_ratio" FLOAT
);CREATE TABLE owid_fertility (
"location" VARCHAR,
"year" INTEGER,
"metric" VARCHAR,
"sex" VARCHAR,
"age" VARCHAR,
"variant" VARCHAR,
"value" FLOAT
);CREATE TABLE owid_fertility_rate_2 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"age" VARCHAR,
"variant" VARCHAR,
"fertility_rate" FLOAT
);CREATE TABLE owid_fertility_single (
"country" VARCHAR,
"age" INTEGER,
"year_as_dimension" INTEGER,
"fertility_rate" FLOAT
);CREATE TABLE owid_growth_rate_2 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"age" VARCHAR,
"variant" VARCHAR,
"growth_rate" FLOAT
);CREATE TABLE owid_life_expectancy_2 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"age" INTEGER,
"variant" VARCHAR,
"life_expectancy" FLOAT
);CREATE TABLE owid_mean_age_childbearing (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"age" VARCHAR,
"variant" VARCHAR,
"mean_age_childbearing" FLOAT
);CREATE TABLE owid_median_age_2 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"age" VARCHAR,
"variant" VARCHAR,
"median_age" FLOAT
);CREATE TABLE owid_migration_1 (
"location" VARCHAR,
"year" INTEGER,
"metric" VARCHAR,
"sex" VARCHAR,
"age" VARCHAR,
"variant" VARCHAR,
"value" FLOAT
);CREATE TABLE owid_migration_3 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"age" VARCHAR,
"variant" VARCHAR,
"net_migration" FLOAT,
"net_migration_rate" FLOAT
);CREATE TABLE owid_mortality (
"location" VARCHAR,
"year" INTEGER,
"metric" VARCHAR,
"sex" VARCHAR,
"age" VARCHAR,
"variant" VARCHAR,
"value" FLOAT
);CREATE TABLE owid_mortality_rate_2 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"age" VARCHAR,
"variant" VARCHAR,
"mortality_rate" FLOAT
);CREATE TABLE owid_natural_change_rate_2 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"age" VARCHAR,
"variant" VARCHAR,
"natural_change_rate" FLOAT
);CREATE TABLE owid_population_1 (
"location" VARCHAR,
"year" INTEGER,
"metric" VARCHAR,
"sex" VARCHAR,
"age" VARCHAR,
"variant" VARCHAR,
"value" FLOAT
);CREATE TABLE owid_population_3 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"age" VARCHAR,
"variant" VARCHAR,
"population" BIGINT,
"population_change" INTEGER,
"population_density" FLOAT
);CREATE TABLE owid_population_granular (
"location" VARCHAR,
"year" INTEGER,
"metric" VARCHAR,
"sex" VARCHAR,
"age" VARCHAR,
"variant" VARCHAR,
"value" FLOAT
);CREATE TABLE owid_sex_ratio_2 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"age" VARCHAR,
"variant" VARCHAR,
"sex_ratio" FLOAT
);CREATE TABLE owid_un_wpp (
"location" VARCHAR,
"year" INTEGER,
"metric" VARCHAR,
"sex" VARCHAR,
"age" VARCHAR,
"variant" VARCHAR,
"value" FLOAT
);Anyone who has the link will be able to view this.