-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
bugSomething isn't workingSomething isn't working
Description
The body reads:
'With the last few exercises, all non-atomic, duplicated, and transitive dependent information was extracted from space_raw and stored into newly created lookup tables. Finally, only the space_raw table itself is missing.
[...]
Select the first five records to check that the table creation worked fine.'
The solutions imply:
SELECT * FROM space LIMIT 5;
The correct code is:
select *
from space_raw
limit 5
The problem is:
When running the correct code an error message pops up stating:
'ProgrammingError: (psycopg2.errors.UndefinedTable) relation "space" does not exist '
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working