sources
Data license: CC-BY
1 row where datasetId = 5108 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 |
---|---|---|---|---|---|---|---|---|
17838 | Roy, Tirthankar (2005); Lains et al. (2009); World Bank (2020) | { "link": "https://datacatalog.worldbank.org/dataset/world-development-indicators", "additionalInfo": "Data for India from 1875-1946 is from Roy, Tirthankar (2005). Data for France, Italy, UK, Nethderlands is from Lains et al. (2009) until 1960. From 1960 onwards, all data for all countries is from the World Bank.", "dataPublishedBy": "Roy, Tirthankar. 2005. \u2018Agricultural Labor and Economic Transition in Colonial India: Lessons from Wage Data\u2019. Working Paper; World Bank (2020) \u2018World Development Indicators\u2019; Lains, Pedro and Vincente Pinella. 2009. \u2018Agriculture and Economic Development in Europe Since 1870\u2019. Routledge: Taylor and Francis India." } |
2020-07-08 12:38:32 | 2020-07-08 12:38:32 | TESA_1.4 5108 | Data for India from 1875-1946 is from Roy, Tirthankar (2005). Data for France, Italy, UK, Nethderlands is from Lains et al. (2009) until 1960. From 1960 onwards, all data for all countries is from the World Bank. | https://datacatalog.worldbank.org/dataset/world-development-indicators | Roy, Tirthankar. 2005. ‘Agricultural Labor and Economic Transition in Colonial India: Lessons from Wage Data’. Working Paper; World Bank (2020) ‘World Development Indicators’; Lains, Pedro and Vincente Pinella. 2009. ‘Agriculture and Economic Development in Europe Since 1870’. Routledge: Taylor and Francis India. |
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");