Global GDP In The Last Millennia (2022)
@owid.gdp_historical
@owid.gdp_historical
This dataset combines the Maddison Project Database, Maddison Database and World Bank's World Development Indicators current estimations to present the most up-to-date evolution of GDP and GDP per capita in the last millennia. As the global aggregation from the World Bank only starts from 1990, the global GDP data is separated into three parts:
CREATE TABLE owid_gdp_historical_1 (
"index" BIGINT,
"country" VARCHAR,
"year" INTEGER,
"gdp" BIGINT,
"gdp_per_capita" FLOAT
);CREATE TABLE owid_gdp_historical_2 (
"country" VARCHAR,
"year" INTEGER,
"gdp" FLOAT,
"gdp_per_capita" FLOAT
);CREATE TABLE owid_gdp_historical_3 (
"country" VARCHAR,
"year" INTEGER,
"gdp" FLOAT,
"gdp_per_capita" FLOAT
);CREATE TABLE owid_gdp_historical_4 (
"country" VARCHAR,
"year" INTEGER,
"gdp" BIGINT,
"gdp_per_capita" FLOAT
);Anyone who has the link will be able to view this.