You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
593 B

7 years ago
mysql
===
MySQL服务器客户端工具
## 补充说明
**mysql命令** 是MySQL数据库服务器的客户端工具它工作在命令行终端中完成对远程MySQL数据库服务器的操作。
### 语法
```
mysql(选项)(参数)
```
### 选项
```
-hMySQL服务器的ip地址或主机名
-u连接MySQL服务器的用户名
-e执行mysql内部命令
-p连接MySQL服务器的密码。
```
### 参数
数据库:指定连接服务器后自动打开的数据库。
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->