I have a table with over 10 million rows in Dremio. I have connected to it from Python PYODBC. I want to run a simple query like shown below:
SELECT REPORTDATE, TRANSDATE
FROM TABLE
WHERE TRANSDATE = '2020-01-05'
The issue is that it takes forever to run this query via Python. What would be the solution for this?