post_tags
Data license: CC-BY
3 rows where post_id = 2589
This data as json, CSV (advanced)
Suggested facets: createdAt (date)
Link | post_id | tag_id | createdAt | updatedAt |
---|---|---|---|---|
2589,246 | Data Review: Ethnographic and archaeological evidence on violent deaths 2589 | War & Peace 246 | 2023-10-12 08:36:07 | |
2589,279 | Data Review: Ethnographic and archaeological evidence on violent deaths 2589 | Homicides 279 | 2023-10-12 08:36:07 | |
2589,1512 | Data Review: Ethnographic and archaeological evidence on violent deaths 2589 | Human Rights and Democracy 1512 | 2023-10-12 08:36:07 |
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");