sources
Data license: CC-BY
1 row where datasetId = 2702 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 |
---|---|---|---|---|---|---|---|---|
15432 | R.A Houston (1982) | { "link": "https://onlinelibrary.wiley.com/doi/full/10.1111/j.1468-0289.1982.tb01193.x", "retrievedDate": "26/03/2018", "additionalInfo": "See Table 1 (pg 204) for original figures. Table 1 provides the percentage who are illiterate. To arrive at current estimates: % who are literate = 100 - (% who are illiterate)", "dataPublishedBy": "Houston, R.A., 1982. The Development of Literacy: Northern England, 1640\u20131750. The Economic History Review, 35(2), pp.199-216.", "dataPublisherSource": "Northern Circuit Assizes Deponents, source of data: P.R.O. ASSI45" } |
2018-03-26 14:59:52 | 2018-03-26 14:59:52 | Literacy in England, by sex - Schofield (1973), Houston (1982), Cressy (1980) 2702 | See Table 1 (pg 204) for original figures. Table 1 provides the percentage who are illiterate. To arrive at current estimates: % who are literate = 100 - (% who are illiterate) | https://onlinelibrary.wiley.com/doi/full/10.1111/j.1468-0289.1982.tb01193.x | Houston, R.A., 1982. The Development of Literacy: Northern England, 1640–1750. The Economic History Review, 35(2), pp.199-216. |
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");