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.

62 lines
1.6 KiB

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden 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.

mysqldump
===
MySQL数据库中备份工具
## 说明
**mysqldump命令** 是mysql数据库中备份工具用于将MySQL服务器中的数据库以标准的sql语言的方式导出并保存到文件中。
### 语法
```
mysqldump(选项)
```
```
--add-drop-table在每个创建数据库表语句前添加删除数据库表的语句
--add-locks备份数据库表时锁定数据库表
--all-databases备份MySQL服务器上的所有数据库
--comments添加注释信息
--compact压缩模式产生更少的输出
--complete-insert输出完成的插入语句
--databases指定要备份的数据库
--default-character-set指定默认字符集
--force当出现错误时仍然继续备份操作
--host指定要备份数据库的服务器
--lock-tables备份前锁定所有数据库表
--no-create-db禁止生成创建数据库语句
--no-create-info禁止生成创建数据库库表语句
--password连接MySQL服务器的密码
--portMySQL服务器的端口号
--user连接MySQL服务器的用户名。
```
### 实例
**导出整个数据库**
```
mysqldump -u 用户名 -p 数据库名 > 导出的文件名
mysqldump -u linuxde -p smgp_apps_linuxde > linuxde.sql
```
**导出一个表**
```
mysqldump -u 用户名 -p 数据库名 表名> 导出的文件名
mysqldump -u linuxde -p smgp_apps_linuxde users > linuxde_users.sql
```
**导出一个数据库结构**
```
mysqldump -u linuxde -p -d --add-drop-table smgp_apps_linuxde > linuxde_db.sql
```
`-d`没有数据,`--add-drop-tabl`e每个create语句之前增加一个`drop table`