home / gym

sets

4 rows where exercise_id = 24

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: weight_kg, reps

id ▼ session_id exercise_id set_number weight_kg reps assist_reps notes
288 15 15 Hammer Strength Lateral Raise 24 1 32 10    
289 15 15 Hammer Strength Lateral Raise 24 2 39 8    
290 15 15 Hammer Strength Lateral Raise 24 3 46 6    
291 15 15 Hammer Strength Lateral Raise 24 4 39 6    

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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
);
Powered by Datasette · Queries took 58.217ms