Pandas SQL chunksize
Let’s consider two options and what happens in both cases: chunksize is None(default value): pandas passes query to database database executes query pandas checks and sees that chunksize is None pandas tells database that it wants to receive all rows of the result table at once database returns all rows of the result table pandas … Read more