sets
5 rows where exercise_id = 1
This data as json, CSV (advanced)
Suggested facets: session_id, set_number, reps
| id ▼ | session_id | exercise_id | set_number | weight_kg | reps | assist_reps | notes |
|---|---|---|---|---|---|---|---|
| 89 | 5 5 | Arnold Press 1 | 1 | 10 | 7 | ||
| 90 | 5 5 | Arnold Press 1 | 2 | 10 | 8 | ||
| 91 | 5 5 | Arnold Press 1 | 3 | 10 | 7 | ||
| 224 | 11 11 | Arnold Press 1 | 1 | 10 | 7 | ||
| 225 | 11 11 | Arnold Press 1 | 2 | 10 | 7 |
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
);