如何在 MySQL 中插入大量行?

How do I insert a large number of rows in MySQL?(如何在 MySQL 中插入大量行?)
本文介绍了如何在 MySQL 中插入大量行?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何通过单个查询将例如 100 000 行插入 MySQL 表?

解决方案

insert into $table values (1, a, b), (2, c, d), (3, e, f);

这将执行 3 行的插入.根据需要继续达到 100,000.在进行 ETL 工作时,我会以这种方式处理大约 1,000 个块.

如果您的数据静态保存在文件中,则对其进行转换并使用 load data infile 将是最好的方法,但我猜您之所以问这个问题是因为您做了类似的事情.p>

还要注意其他人所说的关于限制查询长度的 max_allowed_pa​​cket 大小.

How do I insert for example 100 000 rows into MySQL table with a single query?

解决方案

insert into $table values (1, a, b), (2, c, d), (3, e, f);

That will perform an insertion of 3 rows. Continue as needed to reach 100,000. I do blocks of ~1,000 that way when doing ETL work.

If your data is statically in a file, transforming it and using load data infile will be the best method, but I'm guessing you're asking this because you do something similar.

Also note what somebody else said about the max_allowed_packet size limiting the length of your query.

这篇关于如何在 MySQL 中插入大量行?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)