I'm new to SQL. I have a very large dataset that I query, and am trying to get the rows for many different date ranges, and export these to excel. The Dataset is really large, too large to load into pandas. My question is, is there any way I can save the results of a query in python, so I can run queries on that (much smaller) table rather than having to re-fetch from that dataset? (I do joins and stuff so it takes minutes to load)
Thanks!