sets
5 rows where exercise_id = 7
This data as json, CSV (advanced)
Suggested facets: weight_kg
| id ▼ | session_id | exercise_id | set_number | weight_kg | reps | assist_reps | notes |
|---|---|---|---|---|---|---|---|
| 253 | 13 13 | Cable Flyes (high-to-low) 7 | 1 | 7.5 | 13 | Per arm | |
| 254 | 13 13 | Cable Flyes (high-to-low) 7 | 2 | 10 | 10 | Per arm | |
| 255 | 13 13 | Cable Flyes (high-to-low) 7 | 3 | 12.5 | 7 | Per arm | |
| 256 | 13 13 | Cable Flyes (high-to-low) 7 | 4 | 12.5 | 6 | Per arm | |
| 257 | 13 13 | Cable Flyes (high-to-low) 7 | 5 | 12.5 | 5 | Per arm |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE sets (
id INTEGER PRIMARY KEY AUTOINCREMENT,
session_id INTEGER NOT NULL REFERENCES sessions(id),
exercise_id INTEGER NOT NULL REFERENCES exercises(id),
set_number INTEGER NOT NULL,
weight_kg TEXT,
reps INTEGER,
assist_reps INTEGER,
notes TEXT
);