sources
Data license: CC-BY
1 row where datasetId = 2473 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 |
---|---|---|---|---|---|---|---|---|
14676 | Institute for Health Metrics and Evaluation (IHME) (2012) | { "link": "http://ghdx.healthdata.org/record/global-smoking-prevalence-and-cigarette-consumption-1980-2012", "retrievedDate": "22/02/2018", "additionalInfo": "Consumption per smoker per day refers to all ages and both sexes. The unit of measurement is in cigarettes.\r\n\r\nDaily smoking prevalence for male, female, and both (male and female) also refers to all ages of each particular category. Daily male smoking prevalence is interpreted as the percentage of men, across all ages, who smoke daily. \r\n\r\nThe number of daily male smokers refers to the number of men, by country, who smoke cigarettes at least daily. ", "dataPublishedBy": "IHME, GHDx", "dataPublisherSource": "Nationally representative sources, survey data" } |
2018-02-22 10:30:50 | 2018-02-28 11:44:46 | Smoking prevalence and cigarette consumption (IHME, GHDx (2012)) 2473 | Consumption per smoker per day refers to all ages and both sexes. The unit of measurement is in cigarettes. Daily smoking prevalence for male, female, and both (male and female) also refers to all ages of each particular category. Daily male smoking prevalence is interpreted as the percentage of men, across all ages, who smoke daily. The number of daily male smokers refers to the number of men, by country, who smoke cigarettes at least daily. | http://ghdx.healthdata.org/record/global-smoking-prevalence-and-cigarette-consumption-1980-2012 | IHME, GHDx |
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");