the select object supports an append_from() method. however, if you want to chain the joins themselves together, you probably want to construct the Join object ahead of time and add it to the select via append_from() (or create the select by calling the select() method off the Join itself) once its complete.
On Apr 6, 2007, at 3:52 PM, vkuznet wrote: > > Hi, > is there are any way to add additional joins to a given select object? > > My problem is the following, I need to join the same table multiple > times. How many times I don't know in advance and in addition I need > to apply where clause while adding this join. > > Thanks, > Valentin. > > > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
