MySQL import CSV data in several ways

Source: Internet
Author: User
Tags character set tmp folder mysql import

The MYSQL LOAD Data infile command can import data from a CSV flat file into the database.
If there is an import error, you should put the imported CSV file in the/tmp folder before you have any problems.

Method One, import data using the Load Data infile command

The code is as follows Copy Code

Linux under:

LOAD DATA INFILE '/tmp/fanhao.csv '
Into TABLE ip_location
CHARACTER SET UTF8
FIELDS terminated by ', ' enclosed by ' ';
--character Set:mysql Character Set, be sure to add, eliminate garbled trouble
--into table: Which tables are imported into
--fields terminated by: what as a separator
--Enclosed by: what is surrounded by


Windows:


LOAD DATA INFILE "D:/fanhao.csv"
REPLACE into TABLE DEMO
CHARACTER SET gb2312
FIELDS terminated by "," enclosed by ""
LINES terminated by "RN";
--lines terminated by: This differs from Linux in what is the end of a line.

Method two, using phpMyAdmin to import CSV data

1. Enter into a database to be imported we click on the following image


2. Then we click on the browse button below and we can select the CSV file.

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.