sources
Data license: CC-BY
1 row where datasetId = 61 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 |
---|---|---|---|---|---|---|---|---|
20 | Pietschnig and Voracek (2015) | { "link": "http://pps.sagepub.com/content/10/3/282.abstract", "retrievedDate": "21/07/2015", "additionalInfo": "Citation: Pietschnig, Jakob, and Martin Voracek. \"One Century of Global IQ Gains A Formal Meta-Analysis of the Flynn Effect (1909\u20132013).\" Perspectives on Psychological Science 10, no. 3 (2015): 282-306.", "dataPublishedBy": "Pietschnig and Voracek (2015)", "dataPublisherSource": "Jakob Pietschnig\u00a0and\u00a0Martin Voracek" } |
2015-07-16 16:30:16 | 2017-11-02 13:04:39 | IQ Data - Pietschnig and Voracek (2015) 61 | Citation: Pietschnig, Jakob, and Martin Voracek. "One Century of Global IQ Gains A Formal Meta-Analysis of the Flynn Effect (1909–2013)." Perspectives on Psychological Science 10, no. 3 (2015): 282-306. | http://pps.sagepub.com/content/10/3/282.abstract | Pietschnig and Voracek (2015) |
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");