MySql运行情况如下,我的数据库文件是从一台计算机拷贝到另外一台计算机上面的~show tables可以看到表,但是select就提示表不存在,请教怎么回事?Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql> use news;
Database changed
mysql> show tables;
+----------------+
| Tables_in_news |
+----------------+
| link           |
| manager        |
| message        |
| news           |
| news_agency    |
| news_man       |
| news_type      |
| user           |
+----------------+
8 rows in set (0.01 sec)mysql> select * from news;
ERROR 1146 (42S02): Table 'news.news' doesn't exist
mysql> select * from user;
ERROR 1146 (42S02): Table 'news.user' doesn't exist
mysql>