post_tags
Data license: CC-BY
8 rows where tag_id = 35
This data as json, CSV (advanced)
Suggested facets: createdAt, createdAt (date)
Link | post_id | tag_id | createdAt | updatedAt |
---|---|---|---|---|
15966,35 | Mental Health 15966 | Mental Health 35 | 2023-02-09 10:09:04 | |
18215,35 | 18215 | Mental Health 35 | 2023-02-09 10:09:04 | |
18765,35 | 18765 | Mental Health 35 | 2023-02-09 10:09:04 | |
18985,35 | 18985 | Mental Health 35 | 2023-02-09 10:09:04 | |
51082,35 | What is the lifetime risk of depression? 51082 | Mental Health 35 | 2023-12-28 10:45:15 | |
57166,35 | How do researchers study the prevalence of mental illnesses? 57166 | Mental Health 35 | 2023-07-05 17:48:40 | |
57186,35 | How are mental illnesses defined? 57186 | Mental Health 35 | 2023-07-05 17:48:42 | |
57276,35 | 57276 | Mental Health 35 | 2023-06-12 18:56:49 |
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");