MySQL mysqldump implement method for exporting only table structures or exporting data only

Source: Internet
Author: User
Tags mysql client

MySQL mysqldump export only table structure does not export data

Copy CodeThe code is as follows:
Mysqldump--opt-d database name-u root-p > Xxx.sql


Backing Up the database

Copy CodeThe code is 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 CodeThe code is as follows:
Mysqldump--opt-d database name-u root-p > Xxx.sql


2. Export data does not export structure

Copy CodeThe code is as follows:
MYSQLDUMP-T database name-uroot-p > Xxx.sql


3. Export Data and table structure

Copy CodeThe code is as follows:
Mysqldump database name-uroot-p > Xxx.sql


4. Export the structure of a specific table

Copy CodeThe code is as follows:
Mysqldump-uroot-p-B database name--table table name > Xxx.sql


Import data:
Since mysqldump exports a complete SQL statement, it is easy to import the data using the MySQL client program:

Copy CodeThe code is as follows:
#mysql Database name < file name
#source/tmp/xxx.sql

MySQL mysqldump implement method for exporting only table structures or exporting data only

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.