Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在mysql -u username -p -A命令中A代表什么?
mysql -u username -p -A
A
每当我尝试登录mysql数据库时,如果我将其更改A为小写字母(a),那么这将不允许我登录。
-A启用表名等的制表符补全。但是默认情况下启用它,因此您可以完全省略它。
-A
在命令行中,一切都是区分大小写的,所以-A和-a意味着完全不同的东西。-a甚至不是 MySQL 的选择。
-a
完全省略-A。
将来您可以使用man(简称manual)工具来查找任何命令行程序:man mysql.
man
manual
man mysql