pd.read_sql ()
cũng có tham số chunksize
, vì vậy bạn có thể đọc dữ liệu từ bảng / truy vấn SQL theo từng phần:
for df in pd.read_sql("Select * from timeseries", conn, chunksize=10**4):
# process `df` chunk here...
pd.read_sql ()
cũng có tham số chunksize
, vì vậy bạn có thể đọc dữ liệu từ bảng / truy vấn SQL theo từng phần:
for df in pd.read_sql("Select * from timeseries", conn, chunksize=10**4):
# process `df` chunk here...