participants
2 rows where gid = "65aa8255-47a1-4cb2-92d2-58b9910cbfbc"
This data as json, CSV (advanced)
| Link | rowid ▼ | gid | sid | name | won |
|---|---|---|---|---|---|
| 26 | 26 | 65aa8255-47a1-4cb2-92d2-58b9910cbfbc | gs_gSV4wXjRpvWr9rbFBmSXJxB4 | Combat Reptile | 1 |
| 27 | 27 | 65aa8255-47a1-4cb2-92d2-58b9910cbfbc | gs_wW9rGDKRTdGfSPDYSR7TCqgF | Snaky McSnakeface | 0 |
Advanced export
JSON shape: default, array, newline-delimited
CREATE TABLE participants (
gid TEXT NOT NULL REFERENCES games(gid),
sid TEXT NOT NULL,
name TEXT NOT NULL,
won INTEGER NOT NULL
);
CREATE INDEX index_gid ON participants(gid);
CREATE INDEX index_name ON participants(name);