Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sql/01-sql-queries.sql
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ select title from songs where released > 1990 and mood = 'epic' and duration < 2
/* Exercise logs */

create table exercise_logs (
id integer primary key autoincrement,
id integer primary key auto_increment,
type, text, minutes integer,
calories integer,
heart_rate integer
Expand Down