python连接mysql查询数据输出excel

时间:2024-02-01 21:53:02

要将Python连接MySQL查询的数据输出到Excel文件,你可以使用pandas库和openpyxl库。首先,你需要安装这些库,可以使用以下命令:

 
pip install pandas openpyxl

接下来,你可以使用以下代码将MySQL查询的数据导出到Excel文件:

 
import pymysql
import pandas as pd

# 建立连接
connection = pymysql.connect(
host='localhost',
user='root',
password='password',
db='test_db',
charset='utf8mb4'
)

try:
with connection.cursor() as cursor:
# 执行查询语句
sql = "SELECT * FROM `users` WHERE `email`=%s"
cursor.execute(sql, ('webmaster@python.org',))
# 将查询结果转换为DataFrame对象
df = pd.DataFrame(cursor.fetchall(), columns=[i[0] for i in cursor.description])
# 将DataFrame对象写入Excel文件
df.to_excel('output.xlsx', index=False)
finally:
connection.close()

在这个示例中,我们首先使用pymysql库连接到MySQL数据库,然后执行查询语句并将查询结果转换为pandas的DataFrame对象。最后,我们将DataFrame对象写入Excel文件"output.xlsx"中。你可以根据自己的需要修改输出文件的名称和路径。