Importing Data from Text File into MySQL Database Using LOAD DATA INFILE
Q: How can I import 350MB of tab-delimited data from a text file into a MySQL database table named PerformanceReport in the Xml_Date database?
A: To import this text file data into MySQL, you can use the LOAD DATA INFILE command:
LOAD DATA INFILE '/path/to/text_file.txt' INTO TABLE PerformanceReport;
Make sure to replace '/path/to/text_file.txt' with the actual path to your text file.
By default, LOAD DATA INFILE assumes that the data in your text file is tab-delimited and has one row per line. Therefore, it should import the data from your text file without any issues.
Here's a breakdown of the different parts of the command:
The above is the detailed content of How to Import a Large Tab-Delimited Text File into MySQL Using LOAD DATA INFILE?. For more information, please follow other related articles on the PHP Chinese website!