Timothy Byrne
08/17/2021, 8:26 PMSnowflakeQuery task into a Pandas dataframe?Kevin Kho
cursor.execute(query, params=data).fetchall()
you use
cursor.execute(query, params=data).fetch_pandas_all()Kevin Kho
DictCursor and then convert that to Pandas in another Task