pd.read_sql()
má také parametr chunksize
, takže můžete číst data z SQL tabulky/dotazu po částech:
for df in pd.read_sql("Select * from timeseries", conn, chunksize=10**4):
# process `df` chunk here...
pd.read_sql()
má také parametr chunksize
, takže můžete číst data z SQL tabulky/dotazu po částech:
for df in pd.read_sql("Select * from timeseries", conn, chunksize=10**4):
# process `df` chunk here...