MySQL 4 methods to import data

MySQL 4 methods to import data

1. Import mysql command

The mysql command import syntax is:

mysql -u username -p password < database data to be imported (runoob.sql)

Examples:

# mysql -uroot -p123456 < runoob.sql

The above command will import the entire backed up database runoob.sql.

2. Import with source command

To import a database using the source command, you need to log in to the database terminal first:

mysql> create database abc; # Create a databasemysql> use abc; # Use the created databasemysql> set names utf8; # Set the encodingmysql> source /home/abc/abc.sql # Import the backup database

3. Import data using LOAD DATA

MySQL provides the LOAD DATA INFILE statement to insert data. The following example reads the dump.txt file from the current directory and inserts the data in the file into the mytbl table of the current database.

mysql> LOAD DATA LOCAL INFILE 'dump.txt' INTO TABLE mytbl;

If the LOCAL keyword is specified, it indicates that the file is read from the client host according to the path. If not specified, the file is read from the server at path.

You can explicitly specify column value delimiters and end-of-row markers in the LOAD DATA statement, but the default markers are tabs and newlines.

The syntax of the FIELDS and LINES clauses is the same for both commands. Both clauses are optional, but if both are specified, the FIELDS clause must appear before the LINES clause.

If the user specifies a FIELDS clause, its clauses (TERMINATED BY, [OPTIONALLY] ENCLOSED BY, and ESCAPED BY) are also optional, however, the user must specify at least one of them.

mysql> LOAD DATA LOCAL INFILE 'dump.txt' INTO TABLE mytbl
 -> FIELDS TERMINATED BY ':'
 -> LINES TERMINATED BY '\r\n';

By default, LOAD DATA inserts data in the order of the columns in the data file. If the columns in the data file are inconsistent with the columns in the table being inserted, you need to specify the order of the columns.

For example, the column order in the data file is a, b, c, but the column order in the insert table is b, c, a. The data import syntax is as follows:

mysql> LOAD DATA LOCAL INFILE 'dump.txt' 
  -> INTO TABLE mytbl (b, c, a);

4. Import data using mysqlimport

The mysqlimport client provides a command-line interface to the LOAD DATA INFILEQL statement. Most options for mysqlimport correspond directly to the LOAD DATA INFILE clause.

To import data from the dump.txt file into the mytbl table, use the following command:

$ mysqlimport -u root -p --local mytbl dump.txt
password *****

The mysqlimport command can specify options to set the specified format. The command statement format is as follows:

$ mysqlimport -u root -p --local --fields-terminated-by=":" \
  --lines-terminated-by="\r\n" mytbl dump.txt
password *****

Use the --columns option in the mysqlimport statement to set the order of the columns:

$ mysqlimport -u root -p --local --columns=b,c,a \
  mytbl dump.txt
password *****

Introduction to common options of mysqlimport

Options Function
-d or --delete Delete all information in the data table before importing new data into the data table
-f or --force Regardless of whether errors are encountered, mysqlimport will continue to insert data.
-i or --ignore mysqlimport skips or ignores rows that have the same unique key; the data in the import file is ignored.
-l or -lock-tables Locking the table before data is inserted prevents user queries and updates from being affected while you are updating the database.
-r or -replace This option has the opposite effect to the -i option; it replaces records in the table that have the same unique key.
--fields-enclosed-by= char What is used to enclose the data records in the specified text file? In many cases, the data is enclosed in double quotes. By default, data is not enclosed in characters.
--fields-terminated-by=char Specifies the separator between each data value. In a period-delimited file, the separator is a period. You can use this option to specify the separator between data. The default separator is the tab character.
--lines-terminated- by=str This option specifies the string or character that separates data between lines in a text file. By default, mysqlimport uses newline as the line separator. You can choose to replace a single character with a string: a newline or a carriage return.

The above is the detailed content of the method of importing data into MySQL. For more information about importing data into MySQL, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Several different ways to import data into MYSQL
  • Summary of six ways to optimize MySQL database
  • Several ways to backup MySql database
  • Summary of several ways to overwrite and import databases in MySQL

<<:  A useful mobile scrolling plugin BetterScroll

>>:  Detailed explanation of nginx configuration file interpretation

Recommend

Example code of setting label style using CSS selector

CSS Selectors Setting style on the html tag can s...

Analysis of the principles of Mysql dirty page flush and shrinking table space

mysql dirty pages Due to the WAL mechanism, when ...

Summary of Linux command methods to view used commands

There are many commands used in the system, so ho...

Installing Win10 system on VMware workstation 14 pro

This article introduces how to install the system...

JavaScript data flattening detailed explanation

Table of contents What is Flattening recursion to...

Add a copy code button code to the website code block pre tag

Referring to other more professional blog systems...

MySQL 5.7.17 Compressed Version Installation Notes

This article shares the installation steps of MyS...

Windows Server 2019 IIS10.0+PHP(FastCGI)+MySQL Environment Construction Tutorial

Preparation 1. Environmental Description: Operati...

Linux installation Redis implementation process and error solution

I installed redis today and some errors occurred ...

HTML Basics: HTML Content Details

Let's start with the body: When viewing a web ...

Detailed tutorial on installing MySQL 5.7.20 on RedHat 6.5/CentOS 6.5

Download the rpm installation package MySQL offic...

How to use js to determine whether a file is utf-8 encoded

Conventional solution Use FileReader to read the ...

In-depth understanding of HTML form input monitoring

Today I saw a blog post about input events, and o...