post_tags
Data license: CC-BY
4 rows where tag_id = 300
This data as json, CSV (advanced)
Suggested facets: createdAt (date)
Link | post_id | tag_id | createdAt | updatedAt |
---|---|---|---|---|
2275,300 | 2275 | Quality of Education 300 | 2023-02-09 10:09:04 | |
16414,300 | Learning for our Millennium? The changing face of education access, quality and uptake in Ethiopia 16414 | Quality of Education 300 | 2023-02-09 10:09:04 | |
19373,300 | 19373 | Quality of Education 300 | 2023-02-09 10:09:04 | |
19745,300 | 19745 | Quality of Education 300 | 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");