当前位置:Gxlcms > 数据库问题 > MySQLdb使用批量插入executemany方法插入mysql

MySQLdb使用批量插入executemany方法插入mysql

时间:2021-07-01 10:21:17 帮助过:9人阅读

INSERT INTO 表名 VALUES(%s,%s,%s) #不管什么类型,统一使用%s作为占位符 param = ((username1, salt1, pwd1), (username2, salt2, pwd2), (username3, salt3, pwd3)) #对应的param是一个tuple或者list n=cursor.executemany(sql,param)

之前使用execute方法循环写入数据,表字段多的时候,每秒有时只能写入几条,而executemany方法一次性全部提交,1w条数据只用了不到1s,极大提升了性能。

MySQLdb使用批量插入executemany方法插入mysql

标签:sql语句   round   color   性能   写入   ack   any   tuple   order   

人气教程排行