sources
Data license: CC-BY
1 row where datasetId = 5389 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 |
---|---|---|---|---|---|---|---|---|
20633 | Ruth Thurstan et al. (2010). The effects of 118 years of industrial fishing on UK bottom trawl fisheries. Nature Communications. | { "link": "https://www.nature.com/articles/ncomms1013", "dataPublishedBy": "Thurstan, R. H., Brockington, S., & Roberts, C. M. (2010). The effects of 118 years of industrial fishing on UK bottom trawl fisheries. Nature communications, 1(1), 1-6." } |
2021-10-01 12:02:54 | 2021-10-01 12:02:54 | Fish catch in the UK (Thurstan et al. 2009) 5389 | https://www.nature.com/articles/ncomms1013 | Thurstan, R. H., Brockington, S., & Roberts, C. M. (2010). The effects of 118 years of industrial fishing on UK bottom trawl fisheries. Nature communications, 1(1), 1-6. |
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");