sources
Data license: CC-BY
1 row where datasetId = 5682 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 |
---|---|---|---|---|---|---|---|---|
26706 | Hickman et al. (2021). Climate anxiety in children and young people and their beliefs about government responses to climate change: a global survey. | { "link": "https://www.thelancet.com/journals/lanplh/article/PIIS2542-5196(21)00278-3/fulltext", "additionalInfo": "Hickman et al. (2021) surveyed young people, aged 16-to-25 years old, about their attitudes to climate change.\n\nThe total sample of this survey was approximately 10,000 people. This was split across 10 countries, which approximately 1,000 people in each country in the sample.", "dataPublishedBy": "Hickman, C., Marks, E., Pihkala, P., Clayton, S., Lewandowski, R. E., Mayall, E. E., ... & van Susteren, L. (2021). Climate anxiety in children and young people and their beliefs about government responses to climate change: a global survey. The Lancet Planetary Health, 5(12), e863-e873." } |
2022-08-12 03:48:59 | 2022-08-12 03:48:59 | Young people opinions climate change (Hickman et al. 2021) 5682 | Hickman et al. (2021) surveyed young people, aged 16-to-25 years old, about their attitudes to climate change. The total sample of this survey was approximately 10,000 people. This was split across 10 countries, which approximately 1,000 people in each country in the sample. | https://www.thelancet.com/journals/lanplh/article/PIIS2542-5196(21)00278-3/fulltext | Hickman, C., Marks, E., Pihkala, P., Clayton, S., Lewandowski, R. E., Mayall, E. E., ... & van Susteren, L. (2021). Climate anxiety in children and young people and their beliefs about government responses to climate change: a global survey. The Lancet Planetary Health, 5(12), e863-e873. |
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");