sets
10 rows where exercise_id = 36
This data as json, CSV (advanced)
Suggested facets: session_id, set_number, weight_kg, reps, notes
| id ▼ | session_id | exercise_id | set_number | weight_kg | reps | assist_reps | notes |
|---|---|---|---|---|---|---|---|
| 261 | 14 14 | MTS High Row 36 | 1 | 25 | 10 | ||
| 262 | 14 14 | MTS High Row 36 | 2 | 30 | 11 | ||
| 263 | 14 14 | MTS High Row 36 | 3 | 35 | 9 | ||
| 264 | 14 14 | MTS High Row 36 | 4 | 40 | 6 | ||
| 265 | 14 14 | MTS High Row 36 | 5 | 40 | 7 | ||
| 304 | 16 16 | MTS High Row 36 | 1 | 30 | 11 | ||
| 305 | 16 16 | MTS High Row 36 | 2 | 40 | 9 | ||
| 306 | 16 16 | MTS High Row 36 | 3 | 45 | 8 | ||
| 307 | 16 16 | MTS High Row 36 | 4 | 45 | 6 | ||
| 308 | 16 16 | MTS High Row 36 | 5 | 40 | 8 | Backoff |
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
);