如何将文本文件中的数据导入mysql数据库

How to import data from text file to mysql database(如何将文本文件中的数据导入mysql数据库)
本文介绍了如何将文本文件中的数据导入mysql数据库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我有一个名为 text_file.txt 的 350MB 文件,其中包含此制表符分隔的数据:

I have a 350MB file named text_file.txt containing this tab delimited data:

345868230   1646198120  1531283146  Keyword_1531283146  1.55    252910000
745345566   1646198120  1539847239  another_1531276364  2.75    987831000
...

MySQL 数据库名称:Xml_Date

MySQL Database name: Xml_Date

数据库表:PerformanceReport

我已经创建了包含所有目标字段的表.

I have already created the table with all the destination fields.

我想将此文本文件数据导入到 MySQL 中.我用谷歌搜索并找到了一些命令,例如 LOAD DATA INFILE 并且对如何使用它感到非常困惑.

I want to import this text file data into a MySQL. I googled and found some commands like LOAD DATA INFILE and quite confused on how to use it.

如何导入此文本文件数据?

How can I import this text file data?

推荐答案

应该就这么简单...

LOAD DATA INFILE '/tmp/mydata.txt' INTO TABLE PerformanceReport;

默认情况下 LOAD DATA INFILE 使用制表符分隔,每行一行,所以应该很好.

By default LOAD DATA INFILE uses tab delimited, one row per line, so should take it in just fine.

这篇关于如何将文本文件中的数据导入mysql数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Can#39;t Create Entity Data Model - using MySql and EF6(无法创建实体数据模型 - 使用 MySql 和 EF6)
MySQL select with CONCAT condition(MySQL选择与CONCAT条件)
Capitalize first letter of each word, in existing table(将现有表格中每个单词的首字母大写)
How to retrieve SQL result column value using column name in Python?(如何在 Python 中使用列名检索 SQL 结果列值?)
Update row with data from another row in the same table(使用同一表中另一行的数据更新行)
Exporting results of a Mysql query to excel?(将 Mysql 查询的结果导出到 excel?)