sources
Data license: CC-BY
1 row where datasetId = 4909 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 |
---|---|---|---|---|---|---|---|---|
17640 | World Value Survey | { "link": "http://www.worldvaluessurvey.org/", "retrievedDate": "24 January 2020", "additionalInfo": "\nPercentages are taken only with respect to survey respondents who provide an answer. Those who fail to provide an answer, as well as those who respond \"Don't know\", are excluded from the total.", "dataPublishedBy": "World Value Survey", "dataPublisherSource": "Nationally representative surveys" } |
2020-01-24 19:27:41 | 2020-01-24 19:27:41 | Homosexuality opinions – WVS (1981-2016) 4909 | Percentages are taken only with respect to survey respondents who provide an answer. Those who fail to provide an answer, as well as those who respond "Don't know", are excluded from the total. | http://www.worldvaluessurvey.org/ | World Value Survey |
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");