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

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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