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;
Table 'mysql.host_cache' doesn't exist
原因是 host_cache表不在 mysql数据库里面,而在use performance_schema数据库里面!!!
解决办法
use performance_schema; select * from host_cache;