sources
Data license: CC-BY
1 row where datasetId = 2945 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 |
---|---|---|---|---|---|---|---|---|
15666 | Clark, G. (2005) | { "link": null, "retrievedDate": null, "additionalInfo": "Methods used for calculating the data are covered in R. C. Allen (2001), 'The Great Divergence in European Wages and Prices from the Middle Ages to the First World War'.\n\nData received directly from author via Kevin O'Rourke.", "dataPublishedBy": "Clark, G. (2005), 'The Condition of the Working Class in England', 1209\u20132004, Journal of Political Economy, Vol. 113, No. 6 (December 2005), pp. 1307-1340", "dataPublisherSource": null } |
2018-09-15 20:31:37 | 2018-09-15 20:31:37 | Figure 2.20 2945 | Methods used for calculating the data are covered in R. C. Allen (2001), 'The Great Divergence in European Wages and Prices from the Middle Ages to the First World War'. Data received directly from author via Kevin O'Rourke. | Clark, G. (2005), 'The Condition of the Working Class in England', 1209–2004, Journal of Political Economy, Vol. 113, No. 6 (December 2005), pp. 1307-1340 |
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");