We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e07e31 commit a9fc6fbCopy full SHA for a9fc6fb
21-minutes-MySQL-basic-entry.md
@@ -69,7 +69,7 @@ MySQL 为关系型数据库(Relational Database Management System),一个关
69
### 登录MySQL
70
71
```shell
72
-mysql -h 127.0.0.1 -u 用户名 -p
+mysql -h 127.0.0.1 -u <用户名> -p<密码>. # 默认用户名<root>,-p 是密码,⚠️参数后面不需要空格
73
mysql -D 所选择的数据库名 -h 主机名 -u 用户名 -p
74
mysql> exit # 退出 使用 “quit;” 或 “\q;” 一样的效果
75
mysql> status; # 显示当前mysql的version的各种信息
0 commit comments