利用pandas将mysql查询出得结果写入到excel文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利用pandas将mysql查询出得结果写入到excel文件相关的知识,希望对你有一定的参考价值。

#!/usr/bin/env python3

import pandas as pd

import pymysql


#返回SQL结果的函数

def getrel(sql):

    conn =  pymysql.connect(host='localhost',user='root',password='123456',db='test')

    cur = conn.cursor()

    cur.execute('set names utf8')

    cur.execute('select app,name  from tb')  # 输入要查询的SQL

    rel= cur.fetchall()

    cur.close()

    conn.close() 

  return rel

 

#生成xlsx文件的函数

def getxlsx(rel,dt):

    dret = pd.DataFrame.from_records(list(rel))  # mysql查询的结果为元组,需要转换为列表

    dret.to_excel("filename.xlsx",index=False,header=("app","name"))#header 指定列名,index 默认为True,写行名


## xlsx文件默认使用xlsxwriter,可以通过engine="xlsxwriter"指定


技术分享图片


以上是关于利用pandas将mysql查询出得结果写入到excel文件的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 pymysql 将 mySQL 查询结果存储到 pandas DataFrame 中?

将 pandas 表写入 impala

mysql命令行操作-将查询结果导出到文件

利用Python中的pandas如何写入到excel指定的单元格中?

pandas_udf结果无法写入表

怎么样将soapui的运行结果写入excel