<small id='hUTYc'></small><noframes id='hUTYc'>

    1. <tfoot id='hUTYc'></tfoot>

    2. <i id='hUTYc'><tr id='hUTYc'><dt id='hUTYc'><q id='hUTYc'><span id='hUTYc'><b id='hUTYc'><form id='hUTYc'><ins id='hUTYc'></ins><ul id='hUTYc'></ul><sub id='hUTYc'></sub></form><legend id='hUTYc'></legend><bdo id='hUTYc'><pre id='hUTYc'><center id='hUTYc'></center></pre></bdo></b><th id='hUTYc'></th></span></q></dt></tr></i><div id='hUTYc'><tfoot id='hUTYc'></tfoot><dl id='hUTYc'><fieldset id='hUTYc'></fieldset></dl></div>

      • <bdo id='hUTYc'></bdo><ul id='hUTYc'></ul>

      <legend id='hUTYc'><style id='hUTYc'><dir id='hUTYc'><q id='hUTYc'></q></dir></style></legend>

        如何从 Python 中的数据库创建 CSV 文件?

        时间:2024-04-15
                <tbody id='3kAoa'></tbody>

            1. <small id='3kAoa'></small><noframes id='3kAoa'>

              <legend id='3kAoa'><style id='3kAoa'><dir id='3kAoa'><q id='3kAoa'></q></dir></style></legend>
              <i id='3kAoa'><tr id='3kAoa'><dt id='3kAoa'><q id='3kAoa'><span id='3kAoa'><b id='3kAoa'><form id='3kAoa'><ins id='3kAoa'></ins><ul id='3kAoa'></ul><sub id='3kAoa'></sub></form><legend id='3kAoa'></legend><bdo id='3kAoa'><pre id='3kAoa'><center id='3kAoa'></center></pre></bdo></b><th id='3kAoa'></th></span></q></dt></tr></i><div id='3kAoa'><tfoot id='3kAoa'></tfoot><dl id='3kAoa'><fieldset id='3kAoa'></fieldset></dl></div>
              <tfoot id='3kAoa'></tfoot>

              • <bdo id='3kAoa'></bdo><ul id='3kAoa'></ul>
                  本文介绍了如何从 Python 中的数据库创建 CSV 文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我有一个名为clients"的 Sqlite 3 和/或 MySQL 表..

                  I have a Sqlite 3 and/or MySQL table named "clients"..

                  使用 python 2.6,我如何创建一个名为 Clients100914.csv 的带有标题的 csv 文件?excel方言...

                  Using python 2.6, How do I create a csv file named Clients100914.csv with headers? excel dialect...

                  Sql 执行:select * 只提供表数据,但我想要带有标题的完整表.

                  The Sql execute: select * only gives table data, but I would like complete table with headers.

                  如何创建记录集以获取表头.表头应该直接来自不是用 python 编写的 sql.

                  How do I create a record set to get table headers. The table headers should come directly from sql not written in python.

                  w = csv.writer(open(Fn,'wb'),dialect='excel')
                  #w.writelines("header_row")
                  #Fetch into sqld
                  w.writerows(sqld)
                  

                  这段代码让我打开文件并且没有标题.也无法弄清楚如何使用文件作为日志.

                  This code leaves me with file open and no headers. Also cant get figure out how to use file as log.

                  推荐答案

                  import csv
                  import sqlite3
                  
                  from glob import glob; from os.path import expanduser
                  conn = sqlite3.connect( # open "places.sqlite" from one of the Firefox profiles
                      glob(expanduser('~/.mozilla/firefox/*/places.sqlite'))[0]
                  )
                  cursor = conn.cursor()
                  cursor.execute("select * from moz_places;")
                  with open("out.csv", "w", newline='') as csv_file:  # Python 3 version    
                  #with open("out.csv", "wb") as csv_file:              # Python 2 version
                      csv_writer = csv.writer(csv_file)
                      csv_writer.writerow([i[0] for i in cursor.description]) # write headers
                      csv_writer.writerows(cursor)
                  

                  PEP 249 (DB API 2.0) 有更多关于cursor.description.

                  这篇关于如何从 Python 中的数据库创建 CSV 文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:一个promisified mysql 模块将如何与NodeJS 一起工作? 下一篇:如何在 Toad for Data Analyst 中将结果导出到 Excel 的不同选项卡?

                  相关文章

                  <legend id='gcU7i'><style id='gcU7i'><dir id='gcU7i'><q id='gcU7i'></q></dir></style></legend>
                  <i id='gcU7i'><tr id='gcU7i'><dt id='gcU7i'><q id='gcU7i'><span id='gcU7i'><b id='gcU7i'><form id='gcU7i'><ins id='gcU7i'></ins><ul id='gcU7i'></ul><sub id='gcU7i'></sub></form><legend id='gcU7i'></legend><bdo id='gcU7i'><pre id='gcU7i'><center id='gcU7i'></center></pre></bdo></b><th id='gcU7i'></th></span></q></dt></tr></i><div id='gcU7i'><tfoot id='gcU7i'></tfoot><dl id='gcU7i'><fieldset id='gcU7i'></fieldset></dl></div>

                    <tfoot id='gcU7i'></tfoot>
                      • <bdo id='gcU7i'></bdo><ul id='gcU7i'></ul>

                      <small id='gcU7i'></small><noframes id='gcU7i'>