participants
1 row where gid = "da98e325-5197-4555-8528-5044f4e800bc" and won = 1
This data as json, CSV (advanced)
| Link | rowid ▼ | gid | sid | name | won |
|---|---|---|---|---|---|
| 75 | 75 | da98e325-5197-4555-8528-5044f4e800bc | gs_SDbYStY9XY87YGbvwxK9963V | Combat Reptile | 1 |
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);