欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Mysql中use表警告:Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A

程序员文章站 2023-10-17 09:58:23
今天使用mysql登录数据库,use一个表的时候出现警告信息,详细如下: 后来上网查了一下,出现问题的原因是: 进入mysql时,没有使用 -A 参数 平时我们习惯使用:mysql -hhostname -uusername -ppassword -Pport 使用参数-A:mysql -hhost ......

今天使用mysql登录数据库,use一个表的时候出现警告信息,详细如下:

Mysql中use表警告:Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A

后来上网查了一下,出现问题的原因是:

  进入mysql时,没有使用  -a  参数

  平时我们习惯使用:mysql -hhostname  -uusername -ppassword -pport

  使用参数-a:mysql  -hhostname  -uusername  -ppassword  -pport  -a  

  -a参数解释:

    当我们打开数据库,即use dbname时,要预读数据库信息,加上-a参数后,就不预读数据库信息。一般是我们的数据库变大的时候出现这样的问题。