码迷,mamicode.com
首页 > 其他好文 > 详细

循环导出所有行和列

时间:2021-07-01 17:27:29      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:char   use   pre   des   pymysql   exec   passwd   highlight   desc   

import pymysql,xlwt
def export_excel(table_name):
    host,user,passwd,db=‘192.168.1.152‘,‘root‘,‘myjcyf‘,‘us_sys‘
    coon=pymysql.connect(host=host,user=user,passwd=passwd,db=db,port=32781,charset=‘utf8‘)
    cur=coon.cursor() #建立游标
    sql=‘select * from %s;‘%table_name
    cur.execute(sql)#执行sql
    fileds=[filed[0] for filed in cur.description]#所有字段
    all_data=cur.fetchall()#所有值
    print(all_data)
    book=xlwt.Workbook()
    sheet=book.add_sheet(‘sheet1‘)
    for col,filed in enumerate(fileds):
        sheet.write(0,col,filed)
    row = 1
    for data in all_data:
        for index, datacol in enumerate(data):  # 控制列
            sheet.write(row, index, datacol)
        row = row+ 1
    book.save(‘%s.xls‘ % table_name)
export_excel(‘us_sys.t_dw_bzzx_sbfl‘)  # 导出excel

  

循环导出所有行和列

标签:char   use   pre   des   pymysql   exec   passwd   highlight   desc   

原文地址:https://www.cnblogs.com/ruijie/p/14958752.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!