post_tags
Data license: CC-BY
5 rows where tag_id = 14
This data as json, CSV (advanced)
Suggested facets: createdAt, createdAt (date)
Link | post_id | tag_id | createdAt | updatedAt |
---|---|---|---|---|
3000,14 | Malaria 3000 | Malaria 14 | 2023-02-09 10:09:04 | |
7605,14 | 7605 | Malaria 14 | 2023-02-09 10:09:04 | |
23233,14 | Malaria was common across half the world – since then it has been eliminated in many regions 23233 | Malaria 14 | 2023-07-06 14:25:54 | |
23239,14 | 23239 | Malaria 14 | 2023-07-06 14:25:57 | |
49973,14 | Malaria: One of the leading causes of child deaths, but progress is possible and you can contribute to it 49973 | Malaria 14 | 2023-07-06 14:25:47 |
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");