-
Notifications
You must be signed in to change notification settings - Fork 82
Open
Description
In part 3 of the SQLite tutorial, the first command in the self-joins section is broken. Instead, it should be:
SELECT a.last_name, a.first_name, a.amount, b.amount FROM contributors a, contributors b WHERE a.last_name = b.last_name AND a.first_name = b.first_name;
Currently, it is:
SELECT a.last_name, a.first_name, a.amount, b.amount FROM a, b WHERE a.last_name = b.last_name AND a.first_name = b.first_name;
which leaves a and b undefined and results in an error.
PS
I love the tutorial! I've found it very helpful.
Metadata
Metadata
Assignees
Labels
No labels