千家信息网

用python操作mysql数据库(之批量插入数据)

发表于:2025-01-20 作者:千家信息网编辑
千家信息网最后更新 2025年01月20日,#!/usr/bin/env python# -*- coding: utf-8 -*-import MySQLdb#建立连接conn = MySQLdb.connect(host='127.0.0.
千家信息网最后更新 2025年01月20日用python操作mysql数据库(之批量插入数据)
#!/usr/bin/env python# -*- coding: utf-8 -*-import MySQLdb#建立连接conn = MySQLdb.connect(host='127.0.0.1',user='root',passwd='1qaz#EDC',db='test_db')cur = conn.cursor()#对数据进行操作li = [('tanzhenx','shaoguan'),('huangmengdie','shaoguan')] #定义一个列表,列表中含多个元组,等会批量插入每个元组中的数据cur.executemany('insert into user (name,address) values(%s,%s)',li) #批量插入数据conn.commit()   #提交请求,否则数据是不会写入数据库里#关闭数据库连接cur.close()conn.close()


0