I'm trying to construct a query where in the from clause I would end
up with something like
SELECT foo
FROM table1 JOIN
           table2 ON table1.id1 = table2.id1 JOIN
           table3 ON table1.id1=table3.id1 JOIN
           table4 ON table2.id2=table4.id2 AND table3.id3=table4.id3

I have tried various join combinations but I can only get it to join
table4 to table2 or table 3, not both.
Thanks,
- Eric

-- 
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.

Reply via email to