码迷,mamicode.com
首页 > 数据库 > 详细

使用Python从 MySQL写数据到Excel

时间:2016-12-20 21:30:06      阅读:298      评论:0      收藏:0      [点我收藏+]

标签:python   execl   xlwt   

直接上代码:

#!/usr/bin/env python
#coding:utf-8

import xlwt
import MySQLdb
import datetime

database = MySQLdb.connect(host=‘192.168.1.30‘,user=‘root‘,passwd=‘123456‘,db=‘crm‘)
#设置字符集
database.set_character_set(‘utf8‘)
cursor = database.cursor()
cursor.execute(‘SET NAMES utf8;‘) 
cursor.execute(‘SET CHARACTER SET utf8;‘)
cursor.execute(‘SET character_set_connection=utf8;‘)

starttime = datetime.datetime.now()
print ‘开始时间:%s‘ % (starttime)

#通过SQL得到该表有多少行,如果想取出指定的数据,只需要在后面加where条件即可。
sql2 = ‘select count(*) from bill_test;‘;
cursor.execute(sql2)
count_rows=cursor.fetchone()[0]

wbk = xlwt.Workbook(encoding=‘utf-8‘,style_compression=0)
sheet = wbk.add_sheet(‘sheet 1‘, cell_overwrite_ok=True)
#设置写excel的样式
style = xlwt.XFStyle()
font = xlwt.Font()
font.name = ‘Times New Roman‘
#0x0190设置字体为20,默认为0x00C8 字体为10 ,0x00C8为十六进制的数字
font.height = 0x0190
font.bold = True
style.font = font
#查询得到该表有多少列
query_colums="select count(*) from information_schema.COLUMNS where TABLE_SCHEMA=‘crm‘ and table_name=‘bill_test‘;"
cursor.execute(query_colums)
count_cols = cursor.fetchone()[0]

sql = ‘select member_id, name, tel, phone, dq_datetime, address, parking from bill_test;‘
cursor.execute(sql)

#定义所有的列名,共7列
columnName = [‘账号‘,‘名称‘,‘电话‘,‘手机‘,‘到期日期‘,‘地址‘,‘园区名称‘]  
#将列名插入表格,共7列
for i in range(len(columnName)):         
        sheet.write(0,i,columnName[i],style)

#通过循环取出每一行数据,写入excel    
for i in range(1,count_rows-1):
    data = cursor.fetchone()
    for j in range(0,count_cols-1):
        sheet.write(i,j,data[j],style)       
cursor.close()
database.close()
wbk.save(‘C:\Users\XUWU\Desktop\data01.xls‘)   

endtime=datetime.datetime.now()
print ‘结束时间:%s‘ % (endtime)
print ‘用时:%s 秒‘ % (endtime-starttime)


执行情况:

技术分享


本文出自 “徐铭江的博客” 博客,请务必保留此出处http://xumingjiang.blog.51cto.com/703960/1884261

使用Python从 MySQL写数据到Excel

标签:python   execl   xlwt   

原文地址:http://xumingjiang.blog.51cto.com/703960/1884261

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