My computer was recently wiped and restored, and one of the tables in my MySQL
database has entered a ghost-like state: I cannot delete it, I get an error claiming the table doesn't exist, and I cannot create a new table with that name, I get an error claiming the table already exists. This table did not have any important information in it, so I think the easiest thing would be to delete it for good. Any way I can do this? I'm running the database locally, so I have access to everything.
Here are the exact errors:
When I try to drop the table:
#1051 - Unknown table 'sessions'
When I try to create a new table:
#1050 - Table '`database`.`sessions`' already exists