post_tags
Data license: CC-BY
3 rows where tag_id = 17
This data as json, CSV (advanced)
Suggested facets: createdAt (date)
Link | post_id | tag_id | createdAt | updatedAt |
---|---|---|---|---|
5554,17 | Suicides 5554 | Suicides 17 | 2023-03-13 16:37:23 | |
37223,17 | Why is life expectancy in the US lower than in other rich countries? 37223 | Suicides 17 | 2023-10-12 10:05:16 | |
55830,17 | 55830 | Suicides 17 | 2023-02-09 16:47:06 |
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");