sets
5 rows where exercise_id = 16
This data as json, CSV (advanced)
Suggested facets: weight_kg, reps, notes
| id ▼ | session_id | exercise_id | set_number | weight_kg | reps | assist_reps | notes |
|---|---|---|---|---|---|---|---|
| 213 | 11 11 | EZ Bar Upright Row 16 | 1 | 20 | 10 | ||
| 214 | 11 11 | EZ Bar Upright Row 16 | 2 | 25 | 10 | ||
| 215 | 11 11 | EZ Bar Upright Row 16 | 3 | 30 | 10 | ||
| 216 | 11 11 | EZ Bar Upright Row 16 | 4 | 30 | 5 | ||
| 217 | 11 11 | EZ Bar Upright Row 16 | 5 | 25 | 8 | Back-off set |
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
);