What does "table 'database.table' doesn't exist" mean in sql?

Example:

SELECT * FROM nonExistentTable;
This error message indicates that the specified table does not exist in the selected database.

Solution:

-- Ensure you are using the right table name and database
USE correctDatabase;
SELECT * FROM correctTable;

Beginner's Guide to SQL