Human Mortality Database
@owid.hmd
@owid.hmd
The Human Mortality Database (HMD) is a collaborative project sponsored by the University of California, Berkeley (in the United States of America) and the Max Planck Institute for Demographic Research (in Germany).
It provides researchers with comprehensive data on mortality from around 40 countries around the world, which have very high coverage and quality of data at the national level, through vital registration and potentially census data.
Data is given in terms of period or cohort estimates:
'Interval' refers to the specific age- and time- period of the estimate. An interval can be a one year period for a single-age group, or it can be wider. For example, the life expectancy of a 40 year old in 2019 corresponds to an interval of 1 single-age group in 1 year. The central death rate of 5–9 year olds in 2020 corresponds to an interval of a 5 year age group in 1 year.
CREATE TABLE owid_births_1 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"births" UINTEGER,
"birth_rate" FLOAT
);CREATE TABLE owid_births_2 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"births" UINTEGER,
"birth_rate" FLOAT
);CREATE TABLE owid_births_3 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"births" UINTEGER,
"birth_rate" FLOAT
);CREATE TABLE owid_deaths_1 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"age" VARCHAR,
"deaths" FLOAT
);CREATE TABLE owid_deaths_2 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"age" VARCHAR,
"deaths" FLOAT
);CREATE TABLE owid_deaths_3 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"age" VARCHAR,
"deaths" FLOAT
);CREATE TABLE owid_deaths_agg_1 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"deaths" FLOAT,
"death_rate" FLOAT
);CREATE TABLE owid_deaths_agg_2 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"deaths" FLOAT,
"death_rate" FLOAT
);CREATE TABLE owid_diff_ratios_1 (
"country" VARCHAR,
"year" INTEGER,
"age" VARCHAR,
"type" VARCHAR,
"life_expectancy_fm_diff" FLOAT,
"life_expectancy_mf_ratio" FLOAT,
"central_death_rate_mf_ratio" FLOAT
);CREATE TABLE owid_diff_ratios_2 (
"country" VARCHAR,
"year" INTEGER,
"age" VARCHAR,
"type" VARCHAR,
"life_expectancy_fm_diff" FLOAT,
"life_expectancy_fm_ratio" FLOAT,
"central_death_rate_mf_ratio" FLOAT
);CREATE TABLE owid_diff_ratios_3 (
"country" VARCHAR,
"year" INTEGER,
"age" VARCHAR,
"type" VARCHAR,
"life_expectancy_fm_diff" FLOAT,
"life_expectancy_fm_ratio" FLOAT,
"central_death_rate_mf_ratio" FLOAT
);CREATE TABLE owid_exposures_1 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"age" VARCHAR,
"type" VARCHAR,
"exposure" FLOAT
);CREATE TABLE owid_exposures_2 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"age" VARCHAR,
"type" VARCHAR,
"exposure" FLOAT
);CREATE TABLE owid_exposures_3 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"age" VARCHAR,
"type" VARCHAR,
"exposure" FLOAT
);CREATE TABLE owid_hmd (
"format" VARCHAR,
"type" VARCHAR,
"country" VARCHAR,
"year" VARCHAR,
"sex" VARCHAR,
"age" VARCHAR,
"central_death_rate" FLOAT,
"probability_of_death" FLOAT,
"average_survival_length" FLOAT,
"number_survivors" UINTEGER,
"number_deaths" INTEGER,
"number_person_years_lived" UINTEGER,
"number_person_years_remaining" UINTEGER,
"life_expectancy" FLOAT,
"exposure" FLOAT,
"deaths" FLOAT,
"life_expectancy_fm_diff" FLOAT,
"life_expectancy_fm_ratio" FLOAT,
"central_death_rate_mf_ratio" FLOAT
);CREATE TABLE owid_life_tables_1 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"age" VARCHAR,
"type" VARCHAR,
"central_death_rate" FLOAT,
"probability_of_death" FLOAT,
"average_survival_length" FLOAT,
"number_survivors" UINTEGER,
"number_deaths" INTEGER,
"number_person_years_lived" UINTEGER,
"number_person_years_remaining" UINTEGER,
"life_expectancy" FLOAT
);CREATE TABLE owid_life_tables_2 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"age" VARCHAR,
"type" VARCHAR,
"central_death_rate" FLOAT,
"probability_of_death" FLOAT,
"average_survival_length" FLOAT,
"number_survivors" UINTEGER,
"number_deaths" INTEGER,
"number_person_years_lived" UINTEGER,
"number_person_years_remaining" UINTEGER,
"life_expectancy" FLOAT
);CREATE TABLE owid_life_tables_3 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"age" VARCHAR,
"type" VARCHAR,
"central_death_rate" FLOAT,
"probability_of_death" FLOAT,
"average_survival_length" FLOAT,
"number_survivors" UINTEGER,
"number_deaths" INTEGER,
"number_person_years_lived" UINTEGER,
"number_person_years_remaining" UINTEGER,
"life_expectancy" FLOAT
);CREATE TABLE owid_population_1 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"age" VARCHAR,
"population" FLOAT
);CREATE TABLE owid_population_2 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"age" VARCHAR,
"population" FLOAT
);CREATE TABLE owid_population_3 (
"country" VARCHAR,
"year" INTEGER,
"sex" VARCHAR,
"age" VARCHAR,
"population" FLOAT
);Anyone who has the link will be able to view this.