获取与同一个表中的父项相关的子元素

时间:2012-10-05 19:45:09

标签: python mysql sqlalchemy

我有以下数据库架构

class posts(Base):
    __tablename__ = 'xposts'
    id = Column(Integer, primary_key=True) 



class Comments(Base):  
    __tablename__ = 'comments'
    id = Column(Integer, primary_key=True) 
    comment_parent_id=Column(Integer,unique=True)  
    #comment_id fetches comment of a comment ie the comment_parent_id
    comment_id=Column(Integer,default=None)
    comment_text=Column(String(200))

数据库中的值是

1   12  NULL    Hello First comment
2   NULL    12  First Sub comment

我想使用sqlalchemy获取帖子的所有评论和子评论并且到目前为止

qry=session.query(Comments).filter(Comments.comment_parent_id!=None)
print qry.count()

有没有办法可以在查询中获取评论的所有子评论我在同一个表上尝试了outerjoin(评论)并且它看起来很愚蠢而且失败了。

1 个答案:

答案 0 :(得分:1)

你在sqlalchemy查询中使用了all()函数,之后你可以使用count和len来查找数据库中的总行数。 因为此查询提供了2的列表结果。

qry=session.query(Comments).filter(Comments.comment_parent_id!=None).all()

len(qry)