mysql批量插入数据 excutemany
2021/11/28 19:12:07
本文主要是介绍mysql批量插入数据 excutemany,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
# coding=utf8
"""
问题:
往数据库批量插入10条数据的时候,在for循环里面使用excute插入,接口请求耗时>1s,严重影响效率;
遂考虑使用excutemany批量插入,接口请求耗时400ms
"""
# 逐条插入:cursor.excute()
# 批量插入:cursor.excutemany()
# 使用:executemany(templet, args)
# templet:sql模板字符串,例如:insert into table(id,name) values(%s,%s)
# args: 模板字符串中的参数,是一个list或者tuple, eg: [(1,"a"),(2,"b")] 或者 ((1,"a"),(2,"b"))
# 实例-节选 import time draw_list = [...] # len(draw_list) = 10 sql = ''' insert into table(remix_uid, stage, tp, price, draw_result) values (%s,%s,%s,%s,%s)'''
cursor = db.cursor() start_time = time.time() for i in draw_list: cursor.excute(sql, [args]) end_time = time.time() - start_time print(end_time) # >1s
# ----修改为以下----
cursor = db.cursor() start_time = time.time() data = ((item[''], item[''], ...) for item in draw_list) cursor.executemany(sql, data) end_time = time.time() - start_time print(end_time) # 400ms
这篇关于mysql批量插入数据 excutemany的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-16MySQL资料:新手入门教程
- 2024-11-16MySQL资料:新手入门教程
- 2024-11-15MySQL教程:初学者必备的MySQL数据库入门指南
- 2024-11-15MySQL教程:初学者必看的MySQL入门指南
- 2024-11-04部署MySQL集群项目实战:新手入门教程
- 2024-11-04如何部署MySQL集群资料:新手入门指南
- 2024-11-02MySQL集群项目实战:新手入门指南
- 2024-11-02初学者指南:部署MySQL集群资料
- 2024-11-01部署MySQL集群教程:新手入门指南
- 2024-11-01如何部署MySQL集群:新手入门教程