post_tags
Data license: CC-BY
5 rows where tag_id = 1510
This data as json, CSV (advanced)
Suggested facets: createdAt, createdAt (date)
Link | post_id | tag_id | createdAt | updatedAt |
---|---|---|---|---|
2523,1510 | Terrorism 2523 | Violence and War 1510 | 2023-02-09 10:09:04 | |
2610,1510 | Military Personnel and Spending 2610 | Violence and War 1510 | 2023-10-12 10:17:58 | |
2629,1510 | Nuclear Weapons 2629 | Violence and War 1510 | 2023-02-09 10:09:04 | |
2643,1510 | 2643 | Violence and War 1510 | 2023-02-09 10:09:04 | |
9678,1510 | War and Peace 9678 | Violence and War 1510 | 2023-02-09 10:09:04 |
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");