participants
2 rows where gid = "0053f411-8a01-4a71-a063-c90550327a9a"
This data as json, CSV (advanced)
| Link | rowid ▼ | gid | sid | name | won |
|---|---|---|---|---|---|
| 190105 | 190105 | 0053f411-8a01-4a71-a063-c90550327a9a | gs_TvrwVHp46tGrfHth6jffx3hY | $n4k3 | 0 |
| 190106 | 190106 | 0053f411-8a01-4a71-a063-c90550327a9a | gs_TgtpRgF3RSVpRgQBdjYPwgQS | 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);