我已经设法破坏(或其他)我拥有的 mysql 数据库中的“会话”表(称为“e_learning_resource_prelive”)。这通常不会成为问题,因为我可以返回到数据库的备份转储。但是,损坏的表似乎阻止我删除数据库:
> mysqladmin -u root drop e_learning_resource_prelive
Dropping the database is potentially a very bad thing to do.
Any data stored in the database will be destroyed.
Do you really want to drop the 'e_learning_resource_prelive' database [y/N] y
mysqladmin: DROP DATABASE e_learning_resource_prelive failed;
error: 'Unknown table 'sessions''
当我进入数据库时,会话表显示在 show_tables 中(它是那里唯一的一个,mysqladmin drop 删除了其余的)但我不能删除它:
mysql> show tables;
+---------------------------------------+
| Tables_in_e_learning_resource_prelive |
+---------------------------------------+
| sessions |
+---------------------------------------+
1 row in set (0.00 sec)
mysql> drop table sessions;
ERROR 1051 (42S02): Unknown table 'sessions'
谁能告诉我如何删除此表或整个数据库?我需要删除数据库,然后从我的备份转储中重建它。