sources
Data license: CC-BY
1 row where datasetId = 932 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 |
---|---|---|---|---|---|---|---|---|
6791 | World Bank (2017) | { "link": "http://databank.worldbank.org/data/download/site-content/OGHIST.xls", "retrievedDate": "19/09/2017", "additionalInfo": "The Atlas methodology is used to reduce the impact of exchange rate fluctuations in the cross-country comparison of national incomes.", "dataPublishedBy": "World Bank, WDI", "dataPublisherSource": "Member countries' statistical agencies." } |
2017-09-19 14:16:59 | 2017-11-02 13:04:39 | World Bank Income Thresholds - World Bank (2017) 932 | The Atlas methodology is used to reduce the impact of exchange rate fluctuations in the cross-country comparison of national incomes. | http://databank.worldbank.org/data/download/site-content/OGHIST.xls | World Bank, WDI |
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");