sources
Data license: CC-BY
2 rows where datasetId = 6083 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 |
---|---|---|---|---|---|---|---|---|
29580 | YouGov | { "link": "https://today.yougov.com/topics/technology/articles-reports/2023/04/14/ai-nuclear-weapons-world-war-humanity-poll", "retrievedDate": "2023-06-08", "additionalInfo": "\nThis poll was conducted online on April 7 - 11, 2023 among 1,000 U.S. adult citizens. Respondents were selected from YouGov\u2019s opt-in panel using sample matching.", "dataPublishedBy": "YouGov" } |
2023-12-14 12:07:02 | 2024-07-08 17:49:18 | AI and the End of Humanity (YouGov, 2023) 6083 | This poll was conducted online on April 7 - 11, 2023 among 1,000 U.S. adult citizens. Respondents were selected from YouGov’s opt-in panel using sample matching. | https://today.yougov.com/topics/technology/articles-reports/2023/04/14/ai-nuclear-weapons-world-war-humanity-poll | YouGov |
27738 | YouGov | { "link": "https://today.yougov.com/topics/technology/articles-reports/2023/04/14/ai-nuclear-weapons-world-war-humanity-poll", "retrievedDate": "2023-06-08", "additionalInfo": "This poll was conducted online on April 7 - 11, 2023 among 1,000 U.S. adult citizens. Respondents were selected from YouGov\u2019s opt-in panel using sample matching.", "dataPublishedBy": "YouGov" } |
2023-06-27 09:41:49 | 2024-07-08 17:49:17 | AI and the End of Humanity (YouGov, 2023) 6083 | This poll was conducted online on April 7 - 11, 2023 among 1,000 U.S. adult citizens. Respondents were selected from YouGov’s opt-in panel using sample matching. | https://today.yougov.com/topics/technology/articles-reports/2023/04/14/ai-nuclear-weapons-world-war-humanity-poll | YouGov |
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");