sources
Data license: CC-BY
1 row where datasetId = 5336 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 |
---|---|---|---|---|---|---|---|---|
18056 | David Wuepper et al. (2020). Countries influence the trade-off between crop yields and nitrogen pollution. Nature Food. | { "link": "https://www.nature.com/articles/s43016-020-00185-6", "dataPublishedBy": "Wuepper, D., Le Clech, S., Zilberman, D., Mueller, N., & Finger, R. (2020). Countries influence the trade-off between crop yields and nitrogen pollution. Nature Food, 1(11), 713-719." } |
2021-06-28 12:14:32 | 2021-06-28 12:14:32 | Yield gaps versus nitrogen pollution (Wuepper et al. 2020) 5336 | https://www.nature.com/articles/s43016-020-00185-6 | Wuepper, D., Le Clech, S., Zilberman, D., Mueller, N., & Finger, R. (2020). Countries influence the trade-off between crop yields and nitrogen pollution. Nature Food, 1(11), 713-719. |
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");