post_tags
Data license: CC-BY
7 rows where tag_id = 7
This data as json, CSV (advanced)
Suggested facets: createdAt, createdAt (date)
Link | post_id | tag_id | createdAt | updatedAt |
---|---|---|---|---|
1670,7 | Life Expectancy 1670 | Life Expectancy 7 | 2023-02-09 10:09:04 | |
8279,7 | 8279 | Life Expectancy 7 | 2023-02-09 10:09:04 | |
12412,7 | "Life Expectancy" – What does this actually mean? 12412 | Life Expectancy 7 | 2023-02-09 10:09:04 | |
19205,7 | 19205 | Life Expectancy 7 | 2023-02-09 10:09:04 | |
20096,7 | Why do women live longer than men? 20096 | Life Expectancy 7 | 2023-02-09 10:09:04 | |
20866,7 | Twice as long – life expectancy around the world 20866 | Life Expectancy 7 | 2023-02-09 10:09:04 | |
37223,7 | Why is life expectancy in the US lower than in other rich countries? 37223 | Life Expectancy 7 | 2023-10-12 10:05:16 |
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");