searchable_tags

2 rows sorted by tag

View and edit SQL

Link searchable_id tag ▼
2 2 canine
1 1 feline

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE searchable_tags (
    searchable_id integer,
    tag text,
    PRIMARY KEY (searchable_id, tag),
    FOREIGN KEY (searchable_id) REFERENCES searchable(pk),
    FOREIGN KEY (tag) REFERENCES tags(tag)
);
Powered by Datasette · Query took 7.418ms