Table doesn't exist

From SQLZoo
Jump to navigation Jump to search
schema:gisq

Problem

An attempt was made to read from a table that does not exist.

Most likely the table name has been spelt incorrectly.

Possibly the table is not in the current schema or database.

Solutions

  • Correct the spelling of the table name.
SELECT * FROM Bbc
SELECT * FROM noSuchTable
DataWars, Data Science Practice Projects - LogoDataWars: Practice Data Science/Analysis with +100 Real Life Projects