我希望获得文章列表以及每篇文章的评论数
我的查询看起来像这样 -
comments_subq = meta.Session.query(func.count(Comment.id)).filter(Comment.article_id==Article.id).as_scalar()
articles = meta.Session.query(Article, comments_subq.label("comment_count"))
articles = articles.filter(column('comment_count') >= 5)
它给出了这个错误
column "comment_count" does not exist LINE 5: WHERE comment_count >= 5
如何使用我选择的计数来过滤结果?