python3操作sqlserver,查询数据统计导出csv

 import  pymssql #导入sqlserver连接池模块
import csv #导出csv文件使用模块
conn=pymssql.connect('服务器ip','用户名','密码','数据库名')#连接数据库
cursor=conn.cursor() #打开数据库连接池 #执行sql命令
cursor.execute('select interest from Apply where interest is not null and interest<>%s',"非微信导入") #读取数据
row=cursor.fetchone()
dicList={}
#循环读取,直至读完
while row:
#读取第一列以,分割
str=row[0]
for item in str.split(','):
#判断字典key里是否有该元素,有则加1,
if(item in dicList.keys()): dicList[item]=dicList[item]+1
#无该key则往字典里添加
else: dicList[item] =1 row = cursor.fetchone()
#关闭连接池
cursor.close()
conn.close() with open("data.csv", "w", newline="") as datacsv:
# dialect为打开csv文件的方式,默认是excel,delimiter="\t"参数指写入的时候的分隔符
csvwriter = csv.writer(datacsv, dialect=("excel"))
# csv文件插入一行数据,把下面列表中的每一项放入一个单元格(可以用循环插入多行)
for model in dicList:
csvwriter.writerow([model, dicList[model]])
上一篇:Andrew Ng 的 Machine Learning 课程学习 (week3) Logistic Regression


下一篇:Andrew Ng 的 Machine Learning 课程学习 (week2) Linear Regression