sets
3 rows where exercise_id = 28
This data as json, CSV (advanced)
Suggested facets: weight_kg, reps
| id ▼ | session_id | exercise_id | set_number | weight_kg | reps | assist_reps | notes |
|---|---|---|---|---|---|---|---|
| 195 | 10 10 | Lat Pulldown (V-handle) 28 | 1 | 40 | 11 | ||
| 196 | 10 10 | Lat Pulldown (V-handle) 28 | 2 | 57 | 6 | ||
| 197 | 10 10 | Lat Pulldown (V-handle) 28 | 3 | 57 | 6 |
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
);