sources
Data license: CC-BY
1 row where datasetId = 4254 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 |
---|---|---|---|---|---|---|---|---|
17082 | IHME (2017) | { "link": "http://ghdx.healthdata.org/record/ihme-data/gbd-2017-all-cause-mortality-and-life-expectancy-1950-2017", "retrievedDate": "15/11/2019", "additionalInfo": "The number of deaths of children under five years old.\n\nThis data is available from 1950 to 2017 in 5-year intervals from the Institute of Health Metrics and Evaluation (IHME) Global Burden of Disease study, available at: http://ghdx.healthdata.org/record/ihme-data/gbd-2017-all-cause-mortality-and-life-expectancy-1950-2017", "dataPublishedBy": " Global Burden of Disease Collaborative Network. Global Burden of Disease Study 2017 (GBD 2017) All-cause Mortality and Life Expectancy 1950-2017. Seattle, United States: Institute for Health Metrics and Evaluation (IHME), 2018." } |
2019-11-15 12:06:33 | 2019-11-15 12:06:33 | Number of child deaths 1950-2017 (IHME, 2017) 4254 | The number of deaths of children under five years old. This data is available from 1950 to 2017 in 5-year intervals from the Institute of Health Metrics and Evaluation (IHME) Global Burden of Disease study, available at: http://ghdx.healthdata.org/record/ihme-data/gbd-2017-all-cause-mortality-and-life-expectancy-1950-2017 | http://ghdx.healthdata.org/record/ihme-data/gbd-2017-all-cause-mortality-and-life-expectancy-1950-2017 | Global Burden of Disease Collaborative Network. Global Burden of Disease Study 2017 (GBD 2017) All-cause Mortality and Life Expectancy 1950-2017. Seattle, United States: Institute for Health Metrics and Evaluation (IHME), 2018. |
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");