series_tags
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
3 rows where series_id = "CNT_1T87RR5AB6Z0"
This data as json, CSV (advanced)
| Link | series_id | tag_id |
|---|---|---|
| CNT_1T87RR5AB6Z0,TAG_1GBABM09YKD0 | Immoral CNT_1T87RR5AB6Z0 | Supernatural TAG_1GBABM09YKD0 |
| CNT_1T87RR5AB6Z0,TAG_2M2AXCZQH3EG | Immoral CNT_1T87RR5AB6Z0 | Drama TAG_2M2AXCZQH3EG |
| CNT_1T87RR5AB6Z0,TAG_3JFQNBSZRN3G | Immoral CNT_1T87RR5AB6Z0 | Shoujo Ai TAG_3JFQNBSZRN3G |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE series_tags (
series_id TEXT NOT NULL,
tag_id TEXT NOT NULL,
PRIMARY KEY (series_id, tag_id),
FOREIGN KEY (series_id) REFERENCES series(id),
FOREIGN KEY (tag_id) REFERENCES tags(id)
);
CREATE INDEX idx_series_tags_tag ON series_tags(tag_id);