sources
Data license: CC-BY
1 row where datasetId = 35 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 |
---|---|---|---|---|---|---|---|---|
10 | International Historical Statistics - Brian Mitchell (2015) | { "link": "http://www.palgraveconnect.com/pc/doifinder/10.1057/9781137305688", "retrievedDate": "07/07/2015", "additionalInfo": "National accounts and trade (GDP, imports and exports). The ratio is computed as the sum of imports and exports divided by GDP.", "dataPublishedBy": "International Historical Statistics", "dataPublisherSource": "Brian Mitchell" } |
2015-07-06 14:35:59 | 2017-11-06 16:46:25 | International Historical Statistics: European trade - Brian Mitchell (2015) 35 | National accounts and trade (GDP, imports and exports). The ratio is computed as the sum of imports and exports divided by GDP. | http://www.palgraveconnect.com/pc/doifinder/10.1057/9781137305688 | International Historical Statistics |
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");