Detailed explanation of the example of exporting data from a specified table in MySQL

Detailed explanation of the example of exporting data from a specified table in MySQL

Detailed explanation of MySQL exporting data from a specified table

Require:

1. Do not export the statements for creating a table, because the table has already been created: by default, it will be exported, first drop table and then create table;
2. Add ignore to the exported insert statement to allow repeated execution: ignore is not added by default;
3. List the fields in the table in the insert statement to see more clearly: No by default;
4. Generate multiple insert statements for each record, which is easier to modify: the default is one;

The final result is as follows:

mysqldump -pxxxxxx qzt qf1_mail_account --no-create-info --insert-ignore --complete-insert --skip-extended-insert >qf1_mail_account.sql

in:

-pxxxxxx specifies the password
qzt database name
qf1_mail_account table name
>qf1_mail_account.sql Save to file

mysqldump --help says

 -t, --no-create-info 
           Don't write table creation info.
 --insert-ignore Insert rows with INSERT IGNORE.
 -c, --complete-insert 
           Use complete insert statements.
 -e, --extended-insert 
           Use multiple-row INSERT syntax that include several
           VALUES lists.
           (Defaults to on; use --skip-extended-insert to disable.)

If you have any questions, please leave a message or come to the community to discuss. Thank you for reading and I hope it can help you. Thank you for your support of this site!

You may also be interested in:
  • mysql mysqldump only exports table structure or only exports data implementation method
  • How to import and export databases and data tables in mysql
  • An illegal shutdown caused the MySQL data table to be damaged.
  • Detailed explanation of Linux mysqldump exporting database, data, and table structure
  • Import data from different tables in different databases in mysql
  • The solution to the problem that the Discuz! forum data table cannot be found due to mysql running permissions!
  • How to delete table data in MySQL
  • MySQL realizes the synchronization of data between two tables
  • Mysql updates certain fields of another table based on data from one table (sql statement)
  • Detailed explanation of MySQL multi-table data record query
  • Examples of importing and exporting MySQL table data

<<:  Detailed explanation of CocosCreator optimization DrawCall

>>:  Alibaba Cloud Centos7 installation and configuration of SVN

Recommend

Solution to forgetting the password of the pagoda panel in Linux 3.X/4.x/5.x

Enter ssh and enter the following command to rese...

Detailed explanation of character sets and validation rules in MySQL

1Several common character sets In MySQL, the most...

Implementation methods of common CSS3 animations

1. What is CSS Animations is a proposed module fo...

Let's talk in depth about the principle and implementation of new in JS

Table of contents definition Constructor bodies a...

Draw an iPhone based on CSS3

Result:Implementation Code html <div class=...

Detailed explanation of CSS style sheets and format layout

Style Sheets CSS (Cascading Style Sheets) is used...

JS implements jQuery's append function

Table of contents Show Me The Code Test the effec...

Method of implementing recursive components based on Vue technology

describe This article introduces a method to impl...

Solution to many line breaks and carriage returns in MySQL data

Table of contents Find the problem 1. How to remo...

Steps to transfer files and folders between two Linux servers

Today I was dealing with the issue of migrating a...

Learn MySQL index pushdown in five minutes

Table of contents Preface What is index pushdown?...

DIV common attributes collection

1. Property List Copy code The code is as follows:...