Dear Sirs, My problem is following as follows I have multiple of queries that I save in a list. When I have all my queires in the list I apply intersect_all method q=qlist[0].intersect_all(*qlist[1:]) I get my result simply by res=q.all() However I would like to group results according to some other column q1=q.group_by(tableints.columns['name']) However if I try res=q1.all() I get the error message meaning that I have to apply group_by for each of the wueries stored in the list. Is there any way to applygroup_by only one for all queries in the list? Thanks
-- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sqlalchemy?hl=en.
