将TXT文件导入MySQL数据库通常涉及以下几个步骤:
以下是一个使用Python将CSV格式的TXT文件导入MySQL数据库的示例代码:
import mysql.connector
import csv
# 连接到MySQL数据库
db = mysql.connector.connect(
host="localhost",
user="yourusername",
password="yourpassword",
database="yourdatabase"
)
cursor = db.cursor()
# 创建表(假设表名为example_table)
cursor.execute("""
CREATE TABLE IF NOT EXISTS example_table (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(255),
age INT
)
""")
# 读取TXT文件并插入数据
with open('data.txt', 'r') as file:
reader = csv.reader(file, delimiter=',')
next(reader) # 跳过表头
for row in reader:
cursor.execute("INSERT INTO example_table (name, age) VALUES (%s, %s)", (row[0], row[1]))
# 提交更改
db.commit()
# 关闭连接
cursor.close()
db.close()
通过以上步骤和示例代码,你可以将TXT文件成功导入MySQL数据库。如果遇到具体问题,请检查错误信息并进行相应的调整。
领取专属 10元无门槛券
手把手带您无忧上云