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

Seleziona i record in modo incrementale in MySQL e salva in CSV in Python

Il tuo codice dovrebbe apparire come di seguito. Puoi regolarne le prestazioni da per_query variabile

c = csv.writer(open("temp.csv","wb"))
offset = 0
per_query = 10000
while true:
    cur.execute("__the_query__ LIMIT %s OFFSET %s", (per_query, offset))

    rows = cur.fetchall()
    if len(rows) == 0:
        break #escape the loop at the end of data

    for row in cur.fetchall():
        c.writerow(row)

    offset += per_query