sources
Data license: CC-BY
1 row where datasetId = 1933 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 |
---|---|---|---|---|---|---|---|---|
13936 | Cancer death rates in the US over the long-term - American Cancer Society | { "link": "https://www.cancer.org/research/cancer-facts-statistics/all-cancer-facts-figures/cancer-facts-figures-2015.html", "retrievedDate": "31st January 2018", "additionalInfo": "Figures are based on long-term death rates from various cancer types (since 1930) in the United States for males and females. These death rates are age-standardized to the US population structure for males and females in the year 2000. Death rates are measured per 100,000 individuals.", "dataPublishedBy": "American Cancer Society", "dataPublisherSource": null } |
2018-01-31 13:42:59 | 2018-01-31 13:42:59 | Cancer death rates in the US over the long-term - American Cancer Society 1933 | Figures are based on long-term death rates from various cancer types (since 1930) in the United States for males and females. These death rates are age-standardized to the US population structure for males and females in the year 2000. Death rates are measured per 100,000 individuals. | https://www.cancer.org/research/cancer-facts-statistics/all-cancer-facts-figures/cancer-facts-figures-2015.html | American Cancer Society |
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");