我在数据库中有一个名为options
的MySql表。它列在表格列表中。当我执行查询show tables
时,它将显示在表格列表中。但是当我执行select * from options
时,我收到Table 'stillmanmvolvo.options' doesn't exist
的错误。请建议我做什么。
谢谢
答案 0 :(得分:0)
如果options
仍然存在,请尝试此操作:
SHOW TABLES FROM `stillmanmvolvo`;
如果它在那里,试试这个:
USE `stillmanmvolvo`;
然后:
SELECT * FROM `options`;
不要忘记反击!