2016-09-21 85 views
2

我有一个SQL查询其perfroms一系列左的几个表的连接:如何在SQLALchemy中执行左连接?

SELECT 
<some attributes> 
FROM table1 t1 
INNER JOIN table2 t2 
     ON attr = 1 AND attr2 = 1 
LEFT JOIN table3 t3 
    ON t1.Code = t2.Code AND t3.Date_ = t1.Date_ 
LEFT JOIN tabl4 t4 
    ON t4.Code = t1.code AND t4.Date_ = t1.Date_ 

到目前为止,我有:

(sa.select([idc.c.Code]) 
      .select_from(
       t1.join(t2, and_(t1.c.attr == 1, t2.c.attr2 = 1)) 
       .join(t3, t3.c.Code == t1.c.Code))) 

,但我无法弄清楚如何使加入LEFT JOIN

+1

可以代替使用''outerjoin' join' – adarsh

+2

外连接是不是加入的替代品。我需要一个左连接。 – user1742188

回答

0

isouter = True标志将产生一个LEFT OUTER JOIN,它与LEFT JOIN相同。

2

下面是如何使用isouter:

select_from(db.join(Table1, Table2, isouter=True).join(Table3, isouter=True))