sources
Data license: CC-BY
1 row where datasetId = 1847 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 |
---|---|---|---|---|---|---|---|---|
13158 | Clark, Flèche & Senik – Happiness Inequality | { "link": "http://onlinelibrary.wiley.com/doi/10.1111/roiw.12190/abstract", "retrievedDate": "29 November 2017", "dataPublishedBy": "Clark, Andrew E., Sarah Fl\u00e8che, and Claudia Senik. \u201cEconomic growth evens out happiness: Evidence from six surveys.\u201d Review of Income and Wealth (2015)", "dataPublisherSource": "World Value Survey" } |
2017-11-29 18:22:19 | 2017-11-29 18:22:19 | Clark, Flèche & Senik – Happiness Inequality 1847 | http://onlinelibrary.wiley.com/doi/10.1111/roiw.12190/abstract | Clark, Andrew E., Sarah Flèche, and Claudia Senik. “Economic growth evens out happiness: Evidence from six surveys.” Review of Income and Wealth (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");