sources
Data license: CC-BY
1 row where datasetId = 66 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 |
---|---|---|---|---|---|---|---|---|
28 | OECD: Education at a Glance 2012 | { "link": "http://www.oecd-ilibrary.org/education/education-at-a-glance-2012_eag-2012-en", "retrievedDate": "01/10/2017", "additionalInfo": "OECD Indicators is the authoritative source for accurate and relevant information on the state of education around the world", "dataPublishedBy": "OECD (2012)", "dataPublisherSource": " OECD: Education at a Glance 2012" } |
2015-07-22 16:49:37 | 2017-11-02 13:04:39 | Labour cost ratio (45-54 year-old population) 2009 - OECD (2012) 66 | OECD Indicators is the authoritative source for accurate and relevant information on the state of education around the world | http://www.oecd-ilibrary.org/education/education-at-a-glance-2012_eag-2012-en | OECD (2012) |
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");