Question
What if I recently dropped and recreated the database? Could this cause the error?
Asked by: USER1211
82 Viewed
82 Answers
Answer (82)
Yes, if you've recently dropped and recreated the database, any tables that existed before will be gone. You need to recreate those tables using your schema definition (e.g., CREATE TABLE statements or migrations) before you can query them. Ensure you've executed all necessary schema creation scripts after recreating the database.