post_tags
Data license: CC-BY
6 rows where tag_id = 11
This data as json, CSV (advanced)
Suggested facets: createdAt, createdAt (date)
Link | post_id | tag_id | createdAt | updatedAt |
---|---|---|---|---|
4342,11 | Eradication of Diseases 4342 | Eradication of Diseases 11 | 2023-02-09 10:09:04 | |
5122,11 | Reduction of Cases and Deaths of Vaccine-Preventable Diseases in the US 5122 | Eradication of Diseases 11 | 2023-02-09 10:09:04 | |
18706,11 | 18706 | Eradication of Diseases 11 | 2023-02-09 10:09:04 | |
20518,11 | 20518 | Eradication of Diseases 11 | 2023-02-09 10:09:04 | |
20524,11 | 20524 | Eradication of Diseases 11 | 2023-02-09 10:09:04 | |
26401,11 | Guinea worm disease is close to being eradicated – how was this progress achieved? 26401 | Eradication of Diseases 11 | 2024-02-07 10:15:33 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "post_tags" ( "post_id" INTEGER NOT NULL , "tag_id" INTEGER NOT NULL , "createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP , "updatedAt" DATETIME NULL , PRIMARY KEY ("post_id", "tag_id"), FOREIGN KEY("post_id") REFERENCES "posts" ("id") ON UPDATE RESTRICT ON DELETE CASCADE, FOREIGN KEY("tag_id") REFERENCES "tags" ("id") ON UPDATE RESTRICT ON DELETE CASCADE ); CREATE INDEX "FK_post_tags_tag_id" ON "post_tags" ("tag_id");