sources
Data license: CC-BY
1 row where datasetId = 4865 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 |
---|---|---|---|---|---|---|---|---|
17596 | US Census Bureau & Statistics Canada | { "link": "US: https://www2.census.gov/programs-surveys/demo/tables/families/time-series/adults/ad3.xlsx and Canada: https://www150.statcan.gc.ca/n1/pub/75-006-x/2019001/article/00003-eng.htm", "retrievedDate": "15/11/2019", "additionalInfo": "Data for the United States corresponds to population aged 18 and over. Data for Canada corresponds to population aged 15 and over. ", "dataPublishedBy": "US Census Bureau & Tan, Galbraith, and Truong (2019), Statistics Canada", "dataPublisherSource": "Census data" } |
2019-11-15 23:30:36 | 2019-11-15 23:30:36 | Percentage of adults living alone in the US and Canada- US Census Bureau & Statistics Canada 4865 | Data for the United States corresponds to population aged 18 and over. Data for Canada corresponds to population aged 15 and over. | US: https://www2.census.gov/programs-surveys/demo/tables/families/time-series/adults/ad3.xlsx and Canada: https://www150.statcan.gc.ca/n1/pub/75-006-x/2019001/article/00003-eng.htm | US Census Bureau & Tan, Galbraith, and Truong (2019), Statistics Canada |
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");