Table 'mysql.host_cache' doesn't exist

Table 'mysql.host_cache' doesn't exist

原因是 host_cache表不在 mysql数据库里面,而在use performance_schema数据库里面!!!

解决办法

use performance_schema;
select * from host_cache;
原文地址:https://www.cnblogs.com/easyidea/p/14491944.html