home / train

file

2 rows where patch_id = 1234

✎ View and edit SQL

This data as json, CSV (advanced)

id ▼ patch_id filename
6137 1234 1234 docs/Hooks.md
6138 1234 1234 docs/hooks.txt

Advanced export

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

CSV options:

CREATE TABLE file (
            id INTEGER PRIMARY KEY,
            patch_id INTEGER NOT NULL,
            filename INTEGER NOT NULL,
            FOREIGN KEY(patch_id) REFERENCES patch(id)
        );
CREATE INDEX file_patch_id ON file(patch_id);
Powered by Datasette · Queries took 20.601ms