sources
Data license: CC-BY
1 row where datasetId = 3169 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 |
---|---|---|---|---|---|---|---|---|
16673 | Glyn (2006), National Bureau of Statistics of China, Bank of England and US Bureau of Labor Statistics (2015) | { "link": "http://www.stats.gov.cn/tjsj/ndsj/2013/indexeh.htm; http://www.bls.gov/fls/", "additionalInfo": "Annual US BLS data for Mexico, the Philippines and Sri Lanka has been smoothed using a backward-looking five-year moving average.", "dataPublishedBy": "Andrew Glyn. 2006. Capitalism Unleashed: Finance, Globalization, and Welfare. Oxford: Oxford University Press; National Bureau of Statistics of China. Annual Data; Bank of England; US Bureau of Labor Statistics. 2015. International Labor Comparisons." } |
2019-01-05 20:29:35 | 2019-01-05 20:29:35 | Figure_18.23 3169 | Annual US BLS data for Mexico, the Philippines and Sri Lanka has been smoothed using a backward-looking five-year moving average. | http://www.stats.gov.cn/tjsj/ndsj/2013/indexeh.htm; http://www.bls.gov/fls/ | Andrew Glyn. 2006. Capitalism Unleashed: Finance, Globalization, and Welfare. Oxford: Oxford University Press; National Bureau of Statistics of China. Annual Data; Bank of England; US Bureau of Labor Statistics. 2015. International Labor Comparisons. |
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");