sql >> Database teknologi >  >> RDS >> Mysql

Hvordan opretter jeg en CSV-fil fra 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 flere oplysninger om cursor.description .



  1. SQL Server ORDER BY dato og nuller sidste

  2. Brug af MySQL relationelle databaser på Arch Linux

  3. Sådan ændres mysql root-adgangskoden

  4. Opret parameteriseret VIEW i SQL Server 2008