sources
Data license: CC-BY
1 row where datasetId = 805 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 |
---|---|---|---|---|---|---|---|---|
2965 | Energy - FAO (2017) | { "link": "http://www.fao.org/faostat/en/?#data/", "retrievedDate": "2017-08-28", "additionalInfo": "\r\n\t: \r\nAgriculture and forestry energy use as a percentage of total energy use. Total of bioenergy production is given by the sum of different bioenergy sources (e.g. biodiesel, biogases). Bioenergy production as percentage of Total renewable production.\r\n\r\n", "dataPublishedBy": "Food and Agriculture Organization of the United Nations (FAO) (2017)", "dataPublisherSource": "Total bioenergy production from International Energy Agency (IEA) (Energy Balances of OECD Countries, Energy Balances of Non-OECD Countries-2011 editions): Flow Production" } |
2017-08-28 18:51:03 | 2017-11-02 13:04:34 | Agri-Environmental Indicators: Energy - FAO (2017) 805 | : Agriculture and forestry energy use as a percentage of total energy use. Total of bioenergy production is given by the sum of different bioenergy sources (e.g. biodiesel, biogases). Bioenergy production as percentage of Total renewable production. | http://www.fao.org/faostat/en/?#data/ | Food and Agriculture Organization of the United Nations (FAO) (2017) |
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");