My table is something like this.
I want to get all the mean values corresponding to a particular customer ID. For eg:
{customer_id: [mean_value1,mean_value2,..]} - {7: ]1,2,3]}, {8: [4,5,6,7]}, {9:[8,9,10,5,11]}
I don't want to fetch all the table data and then loop on the columns, that will take lots of time. is there any Flask ORM or normal query to fetch this?
