sources
Data license: CC-BY
1 row where datasetId = 4907 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 |
---|---|---|---|---|---|---|---|---|
17638 | Pew Research (2013) | { "link": "https://www.pewresearch.org/global/", "retrievedDate": "22 Feb 2020", "additionalInfo": "\n<strong>Notes </strong>\nThe full question asked: <em>Which one of these comes closest to your opinion, number 1 or number 2?...</br> #1 - Homosexuality should be accepted by society; or</br> #2 - Homosexuality should not be accepted by society </em>\n\nFor some countries the survey is not representative at the national level.", "dataPublishedBy": "Pew Global Attitudes & Trends Question Database", "dataPublisherSource": "Pew Research Center\u2019s Global Attitudes Project surveys" } |
2020-01-22 20:26:28 | 2020-01-22 20:26:28 | Homosexuality public opinion – Pew Research (2013) 4907 | <strong>Notes </strong> The full question asked: <em>Which one of these comes closest to your opinion, number 1 or number 2?...</br> #1 - Homosexuality should be accepted by society; or</br> #2 - Homosexuality should not be accepted by society </em> For some countries the survey is not representative at the national level. | https://www.pewresearch.org/global/ | Pew Global Attitudes & Trends Question Database |
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");