sources
Data license: CC-BY
1 row where datasetId = 4246 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 |
---|---|---|---|---|---|---|---|---|
17074 | Pew Research Center (2015) | { "link": "https://www.pewresearch.org/internet/2015/11/19/searching-for-work-in-the-digital-era/pi_2015-11-19_internet-and-job-seeking_0-01/", "retrievedDate": "04/11/2019", "additionalInfo": "Among Americans who have looked for a new job in the last two years, the percentage who say they used a certain method in their most recent search for a job. \n\nNote: based on the 34% of Americans who have looked for a job in the last two years. \n\nThe survey was conducted June 10 - July 12, 2015. Sample size = 2,001.", "dataPublishedBy": "Pew Research Center", "dataPublisherSource": "Pew Research Center" } |
2019-11-04 23:47:14 | 2019-11-04 23:47:14 | Job search methods US - Pew Research Center (2015) 4246 | Among Americans who have looked for a new job in the last two years, the percentage who say they used a certain method in their most recent search for a job. Note: based on the 34% of Americans who have looked for a job in the last two years. The survey was conducted June 10 - July 12, 2015. Sample size = 2,001. | https://www.pewresearch.org/internet/2015/11/19/searching-for-work-in-the-digital-era/pi_2015-11-19_internet-and-job-seeking_0-01/ | Pew Research Center |
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");