sources
Data license: CC-BY
1 row where datasetId = 65 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 |
---|---|---|---|---|---|---|---|---|
27 | The Condition of the Working Class in England, 1209–2004 - Clark (2005) | { "link": "http://www.journals.uchicago.edu/doi/abs/10.1086/498123", "retrievedDate": "01/10/2017", "additionalInfo": "Data taken from Table A2.", "dataPublishedBy": "Clark (2005) The Condition of the Working Class in England, 1209\u20132004. Journal of Political Economy, Vol. 113, No. 6, pp. 1307-1340." } |
2015-07-22 16:02:14 | 2017-11-02 13:04:39 | Relative wages of craftsmen to labourers, 1200-2000 - Clark (2005) 65 | Data taken from Table A2. | http://www.journals.uchicago.edu/doi/abs/10.1086/498123 | Clark (2005) The Condition of the Working Class in England, 1209–2004. Journal of Political Economy, Vol. 113, No. 6, 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");