MySQL 导入大文本通常指的是将包含大量数据的文本文件(如 CSV、TXT 等)导入到 MySQL 数据库中。这个过程可能涉及到数据的清洗、转换和加载等多个步骤。
原因:
innodb_buffer_pool_size
、max_allowed_packet
等)可能未优化。解决方法:
原因:
解决方法:
原因:
解决方法:
import mysql.connector
import csv
# 连接 MySQL 数据库
db = mysql.connector.connect(
host="localhost",
user="yourusername",
password="yourpassword",
database="yourdatabase"
)
cursor = db.cursor()
# 打开 CSV 文件
with open('data.csv', newline='', encoding='utf-8') as csvfile:
reader = csv.reader(csvfile)
next(reader) # 跳过表头
for row in reader:
sql = "INSERT INTO yourtable (column1, column2, column3) VALUES (%s, %s, %s)"
cursor.execute(sql, row)
# 提交事务并关闭连接
db.commit()
cursor.close()
db.close()
领取专属 10元无门槛券
手把手带您无忧上云