post_tags
Data license: CC-BY
5 rows where tag_id = 91
This data as json, CSV (advanced)
Suggested facets: createdAt, createdAt (date)
Link | post_id | tag_id | createdAt | updatedAt |
---|---|---|---|---|
4315,91 | Natural Disasters 4315 | Natural Disasters 91 | 2023-02-09 10:09:04 | |
12178,91 | Not all deaths are equal: How many deaths make a natural disaster newsworthy? 12178 | Natural Disasters 91 | 2023-02-09 10:09:04 | |
16846,91 | 16846 | Natural Disasters 91 | 2023-02-09 10:09:04 | |
20828,91 | What were the world's deadliest earthquakes? 20828 | Natural Disasters 91 | 2023-02-09 10:09:04 | |
49007,91 | A century of global deaths from disasters 49007 | Natural Disasters 91 | 2023-07-06 12:59:24 |
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");