使用python将mysql的查询数据导出到文件
程序员文章站
2022-05-07 10:37:25
...
在python中:
1. 连接:
Python代码
import mysql.connector cnx = mysql.connector.connect(user='scott', password='tiger', host='127.0.0.1', database='employees') cnx.close()
2. 查询:
Python代码
import datetime import mysql.connector cnx = mysql.connector.connect(user='scott', database='employees') cursor = cnx.cursor() query = ("SELECT first_name, last_name, hire_date FROM employees " "WHERE hire_date BETWEEN %s AND %s") hire_start = datetime.date(1999, 1, 1) hire_end = datetime.date(1999, 12, 31) cursor.execute(query, (hire_start, hire_end)) for (first_name, last_name, hire_date) in cursor: print("{}, {} was hired on {:%d %b %Y}".format( last_name, first_name, hire_date)) cursor.close() cnx.close()
3. 输出到文件(使用当前日期做文件名)
Python代码
import time filename = 'page_list_'+str(time.strftime("%Y%m%d"))+'.txt' output = open(filename,'w') output.write(str(page_title).lstrip('(b\'').rstrip('\',)')+"\n") output.close()
这里page_title是上面从数据库中检索出来的字段名。因为输出都是(b'pagename')的格式,所以又做了一些处理,删除了多余的字符。
这样,检索出的内容就可以直接保存到以日期为名字的文件中了。
推荐阅读
-
使用python将大量数据导出到Excel中的小技巧分享
-
Python使用cx_Oracle模块将oracle中数据导出到csv文件的方法
-
Python使用sql语句对mysql数据库多条件模糊查询的思路详解
-
使用python的pandas库读取csv文件保存至mysql数据库
-
Python使用cx_Oracle模块将oracle中数据导出到csv文件的方法
-
使用python将mysql的查询数据导出到文件
-
使用bash将csv文件数据读写到MySQL数据库的脚本之一_MySQL
-
Python使用cx_Oracle模块将oracle中数据导出到csv文件的方法
-
使用Python将Mysql的查询数据导出到文件的方法
-
使用python将文件数据转换成二维列表的方法介绍