MySQL mysqldump an implementation method that only exports the table structure or data only _mysql

Source: Internet
Author: User
Tags mysql client
MySQL mysqldump only export table structure do not export data
Copy Code code as follows:

Mysqldump--opt-d database name-u root-p > Xxx.sql

backing up a database
Copy Code code as follows:

#mysqldump database name > Database backup Name
#mysqldump-A-u user name-p password database name > database backup Name
#mysqldump-D-A--add-drop-table-uroot-p >xxx.sql

1. Export structure does not export data
Copy Code code as follows:

Mysqldump--opt-d database name-u root-p > Xxx.sql

2. Export data does not export structure
Copy Code code as follows:

MYSQLDUMP-T database name-uroot-p > Xxx.sql

3. Export Data and table structure
Copy Code code as follows:

Mysqldump database name-uroot-p > Xxx.sql

4. Export the structure of a specific table
Copy Code code as follows:

Mysqldump-uroot-p-B database name--table table name > Xxx.sql

Import Data:
Since mysqldump is exporting complete SQL statements, it is easy to import data into the MySQL client program:
Copy Code code as follows:

#mysql Database name < filename
#source/tmp/xxx.sql
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.