I have a result like this from presto command:
a| b| c
--+--+------
1 | 3| 6
2 | 4| 5
I know of cursor.fetchall()
for all the data and cursor.fetchone()
for a single row.
Now, I would like to get all the data from a particular column e.g. a [1, 2]
Is there a way to to this?