我在这里遇到了一个数据库问题,其中一次数据库更新后,一个表停止工作。 我不能做什么(考虑表xxx): 转储整个数据库; (它说该表不存在)
SELECT *
FROM xxx; (it says that the table doesn't exist)
CREATE TABLE xxx(id int); (it says that the table exists)
我在互联网上找不到任何解决方案。
答案 0 :(得分:0)
执行show tables时会出现表格吗?
mysql> show tables
你试过重启mysql服务吗?