sources
Data license: CC-BY
1 row where datasetId = 3097 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 |
---|---|---|---|---|---|---|---|---|
16232 | BLS (2011) | { "link": "http://www.bls.gov/fls/#gdp", "additionalInfo": "Bureau of Labor Statistics data for Spanish real wages available only from 1979. Spanish real wage growth for 1970\u20131979 has therefore been estimated using Tables 16.25 and 16.5 from Barciela L\u00f3pez, Carlos, Albert Carreras, and Xavier Tafunell. 2005. Estad\u00edsticas hist\u00f3ricas de Espa\u00f1a: Siglos XIX-XX. Bilbao: Fundaci\u00f3n BBVA.\n\n", "dataPublishedBy": "Bureau of Labor Statistics (2011)" } |
2018-11-17 12:54:33 | 2018-11-17 12:54:33 | TE-16.12 3097 | Bureau of Labor Statistics data for Spanish real wages available only from 1979. Spanish real wage growth for 1970–1979 has therefore been estimated using Tables 16.25 and 16.5 from Barciela López, Carlos, Albert Carreras, and Xavier Tafunell. 2005. Estadísticas históricas de España: Siglos XIX-XX. Bilbao: Fundación BBVA. | http://www.bls.gov/fls/#gdp | Bureau of Labor Statistics (2011) |
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");