As I know, the SELECT syntax is used for getting data from a row instead of column, here I have a column called time in a table, and I just want to select all the data in this time column, put them in an array, and use this array later.
So how can I select a column of data and put them into an array?
The query: SELECT time FROM Table
Use this query to populate an array in python!
Something like this?