sets
4 rows where exercise_id = 11
This data as json, CSV (advanced)
Suggested facets: reps
| id ▼ | session_id | exercise_id | set_number | weight_kg | reps | assist_reps | notes |
|---|---|---|---|---|---|---|---|
| 137 | 7 7 | Close Grip Pull-ups 11 | 1 | BW | 5 | ||
| 138 | 7 7 | Close Grip Pull-ups 11 | 2 | BW | 6 | ||
| 139 | 7 7 | Close Grip Pull-ups 11 | 3 | BW | 6 | ||
| 140 | 7 7 | Close Grip Pull-ups 11 | 4 | BW | 5 |
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
);