sources
Data license: CC-BY
1 row where datasetId = 3182 sorted by id descending
This data as json, CSV (advanced)
Suggested facets: createdAt (date), updatedAt (date)
id ▲ | name | description | createdAt | updatedAt | datasetId | additionalInfo | link | dataPublishedBy |
---|---|---|---|---|---|---|---|---|
16686 | Maddison Project Database (2018); Huberman, Minns (2007); OECD (2019) | { "link": "https://www.rug.nl/ggdc/historicaldevelopment/maddison/releases/maddison-project-database-2018; http://personal.lse.ac.uk/minns/Huberman_Minns_EEH_2007.pdf; https://stats.oecd.org/index.aspx?DataSetCode=ANHRS#", "dataPublishedBy": "Maddison Project Database, version 2018. Bolt, Jutta, Robert Inklaar, Herman de Jong and Jan Luiten van Zanden (2018), \u201cRebasing \u2018Maddison\u2019: new income comparisons and the shape of long-run economic development\u201d, Maddison Project Working paper 10; Michael Huberman and Chris Minns. 2007. \u2018The times they are not changin\u2019: Days and hours of work in Old and New Worlds, 1870\u20132000\u2019. Explorations in Economic History 44 (4): pp. 538\u2013567.; OECD Statistics" } |
2019-01-21 10:30:18 | 2019-01-21 10:30:18 | TE-3.1 3182 | https://www.rug.nl/ggdc/historicaldevelopment/maddison/releases/maddison-project-database-2018; http://personal.lse.ac.uk/minns/Huberman_Minns_EEH_2007.pdf; https://stats.oecd.org/index.aspx?DataSetCode=ANHRS# | Maddison Project Database, version 2018. Bolt, Jutta, Robert Inklaar, Herman de Jong and Jan Luiten van Zanden (2018), “Rebasing ‘Maddison’: new income comparisons and the shape of long-run economic development”, Maddison Project Working paper 10; Michael Huberman and Chris Minns. 2007. ‘The times they are not changin’: Days and hours of work in Old and New Worlds, 1870–2000’. Explorations in Economic History 44 (4): pp. 538–567.; OECD Statistics |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "sources" ( "id" INTEGER PRIMARY KEY AUTOINCREMENT, "name" VARCHAR(512) NULL , "description" TEXT NOT NULL , "createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP , "updatedAt" DATETIME NULL , "datasetId" INTEGER NULL, additionalInfo TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.additionalInfo')) VIRTUAL, link TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.link')) VIRTUAL, dataPublishedBy TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.dataPublishedBy')) VIRTUAL, FOREIGN KEY("datasetId") REFERENCES "datasets" ("id") ON UPDATE RESTRICT ON DELETE RESTRICT ); CREATE INDEX "sources_datasetId" ON "sources" ("datasetId");