Skip to content

Practice Exercice Normalizing space Gui #37

@NeisseN

Description

@NeisseN

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 working

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions