Mysql错误:Ignoring query to other database解决方法
时间:2020-07-20 10:58:29
收藏:0
阅读:110
Mysql错误:Ignoring query to other database解决方法
今天登陆mysql show databases出现Ignoring query to other database错误,又试了几个命令和sql全部提示Ignoring query to other database错误
mysql> show databases;
Ignoring query to other database
mysql> show tables;
Ignoring query to other database
发现原来是在连接mysql时没有"-u"参数导致的
重新连接mysql 加上-u参数 一切正常
评论(0)