sources
Data license: CC-BY
1 row where datasetId = 575 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 |
---|---|---|---|---|---|---|---|---|
2214 | Public support and opposition to nuclear energy- Ipsos MORI (2011) | { "link": "https://www.ipsos.com/ipsos-mori/en-uk/strong-global-opposition-towards-nuclear-power", "retrievedDate": "17/07/2017", "additionalInfo": "The Ipsos MORI survey was conducted in 24 countries. An international sample of 18,787 adults aged 18-64 in the US and Canada, and age 16-64 in all other countries, were interviewed between May 6 and May 21, 2011 via the Ipsos Online Panel system.\r\n\r\nResults presented here are in response to the question: \"Please indicate whether you strongly support, somewhat support, somewhat oppose, or strongly oppose each way of producing electricity\" [results for nuclear electricity production].\r\n\r\nFour responses were accepted for this question: \"strongly support\"; \"somewhat support\"; \"somewhat oppose\"; and \"strongly oppose\". We have simplified these results to \"support\" and \"oppose\" by summing the former and latter two responses, respectively.", "dataPublishedBy": "Ipsos MORI (2011). Global Citizen Reaction to the Fukushima Nuclear Plant Disaster", "dataPublisherSource": "Ipsos MORI global and national surveys" } |
2017-07-17 12:27:42 | 2017-11-23 10:42:58 | Public support and opposition to nuclear energy- Ipsos MORI (2011) 575 | The Ipsos MORI survey was conducted in 24 countries. An international sample of 18,787 adults aged 18-64 in the US and Canada, and age 16-64 in all other countries, were interviewed between May 6 and May 21, 2011 via the Ipsos Online Panel system. Results presented here are in response to the question: "Please indicate whether you strongly support, somewhat support, somewhat oppose, or strongly oppose each way of producing electricity" [results for nuclear electricity production]. Four responses were accepted for this question: "strongly support"; "somewhat support"; "somewhat oppose"; and "strongly oppose". We have simplified these results to "support" and "oppose" by summing the former and latter two responses, respectively. | https://www.ipsos.com/ipsos-mori/en-uk/strong-global-opposition-towards-nuclear-power | Ipsos MORI (2011). Global Citizen Reaction to the Fukushima Nuclear Plant Disaster |
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");