如何在“use dbname;”中使用“-A”

如何在“use dbname;”中使用“-A”

在 MySQL 管理员中运行时use dbname;,我会收到以下消息:

Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

但我还是不清楚如何使用-A

答案1

当从命令行启动时,应将-A(或等效地--no-auto-rehash)作为选项添加,例如:mysql

mysql -p -u myusername -A

您是mysql从 shell 提示符运行,还是通过某些 Web 管理界面运行?

相关内容