chart_tags
Data license: CC-BY
3 rows where chartId = 3919
This data as json, CSV (advanced)
Suggested facets: keyChartLevel, isApproved, createdAt (date)
Link | chartId | tagId | keyChartLevel | createdAt | updatedAt | isApproved |
---|---|---|---|---|---|---|
3919,25 | Deaths from illicit drugs 3919 | Burden of Disease 25 | 0 | 2023-10-04 09:09:51 | 0 | |
3919,1571 | Deaths from illicit drugs 3919 | Substance Use 1571 | 3 | 2023-10-04 09:09:51 | 1 | |
3919,1825 | Deaths from illicit drugs 3919 | Illicit Drug Use 1825 | 3 | 2023-10-04 09:09:51 | 1 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "chart_tags" ( "chartId" INTEGER NOT NULL , "tagId" INTEGER NOT NULL , "keyChartLevel" TINYINT NOT NULL DEFAULT '0' , "createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP , "updatedAt" DATETIME NULL , "isApproved" TINYINT NOT NULL DEFAULT '0' , PRIMARY KEY ("chartId", "tagId"), FOREIGN KEY("chartId") REFERENCES "charts" ("id") ON UPDATE RESTRICT ON DELETE CASCADE, FOREIGN KEY("tagId") REFERENCES "tags" ("id") ON UPDATE RESTRICT ON DELETE RESTRICT ); CREATE INDEX "FK_chart_tags_tagId" ON "chart_tags" ("tagId");