sql >> Databasteknik >  >> RDS >> Mysql

Hur skapar jag en CSV-fil från databasen i Python?

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) har mer information om cursor.description .



  1. Lägg till veckor till ett datum i PostgreSQL

  2. kan inte ta emot parameter från oracle-proceduren som exekveras av mybatis

  3. pg_restore Alternatives - PostgreSQL-säkerhetskopiering och automatisk återställning med ClusterControl

  4. Flerradsskär med pg-löfte